Skip to content

Bump golang.org/x/image from 0.10.0 to 0.11.0 #102

Bump golang.org/x/image from 0.10.0 to 0.11.0

Bump golang.org/x/image from 0.10.0 to 0.11.0 #102

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@v3
with:
go-version: 1.19.x
- name: Check out code into the Go module directory
uses: actions/checkout@v3
- name: Spellcheck
run: |
go install github.com/client9/misspell/cmd/misspell@latest
find . -type f | xargs misspell -source=text -error