Skip to content

Commit

Permalink
Run misspell self-hosted & from maintained repo
Browse files Browse the repository at this point in the history
Run it with our own machine & take it from the repo that
is maintained.
  • Loading branch information
JanneKiiskila committed Jan 11, 2024
1 parent 75485ca commit d539228
Showing 1 changed file with 10 additions and 5 deletions.
15 changes: 10 additions & 5 deletions .github/workflows/misspell.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,18 @@ concurrency:

jobs:
static-checks:
runs-on: ubuntu-latest
runs-on: edge-example-ci
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Run misspell (findings may not increase)
- name: Install Go
uses: actions/setup-go@v4
with:
go-version: '1.20'
- name: Install & run misspell
if: always()
run: |
curl -L -o ./install-misspell.sh https://git.io/misspell
sh ./install-misspell.sh
bin/misspell -i mosquitto .
# The original misspell is not maintained anymore, use the one
# from golangci instead
go install github.com/golangci/misspell/cmd/misspell@latest
misspell -i mosquitto .

0 comments on commit d539228

Please sign in to comment.