Skip to content

Bump golang.org/x/sys from 0.28.0 to 0.29.0 #230

Bump golang.org/x/sys from 0.28.0 to 0.29.0

Bump golang.org/x/sys from 0.28.0 to 0.29.0 #230

Workflow file for this run

---
name: spellcheck
on:
push:
tags-ignore:
- '**'
branches:
- main
pull_request:
branches:
- main
jobs:
build:
name: spellcheck
runs-on: ubuntu-latest
steps:
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: stable
- name: Check out code into the Go module directory
uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.sha }}
- name: Spellcheck
run: |
go install github.com/client9/misspell/cmd/misspell@latest
find . -type f | xargs misspell -source=text -error