Merge pull request #448 from kylemcc/dependabot/go_modules/github.com… #1085
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: [push, pull_request] | |
name: Check Commit | |
jobs: | |
check_commit: | |
name: Check Commit | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/[email protected] | |
- uses: actions/setup-go@v5 | |
with: | |
go-version: '^1.18.0' | |
- name: install checkers | |
run: | | |
go get honnef.co/go/tools/cmd/staticcheck | |
go get golang.org/x/lint/golint | |
go get github.com/client9/misspell/cmd/misspell | |
- name: check | |
run: make check |