Files
homeport--termshot/.github/workflows/misspell.yml
T
wehub-resource-sync 607e84665c
spellcheck / spellcheck (push) Successful in 17m28s
golangci-lint / golangci-lint (push) Has been cancelled
Tests / Tests (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 12:33:05 +08:00

31 lines
549 B
YAML

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