Revert back to v4 behavior for group registering implicit 404 handler… #719
Workflow file for this run
This file contains hidden or 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
| name: Run checks | |
| on: | |
| push: | |
| branches: | |
| - master | |
| pull_request: | |
| branches: | |
| - master | |
| workflow_dispatch: | |
| permissions: | |
| contents: read # to fetch code (actions/checkout) | |
| env: | |
| LATEST_GO_VERSION: "1.26" | |
| # https://github.com/actions/checkout/commit/df4cb1c069e1874edd31b4311f1884172cec0e10 | |
| CHECKOUT_ACTION: &checkout_action actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6 | |
| # https://github.com/actions/setup-go/commit/924ae3a1cded613372ab5595356fb5720e22ba16 | |
| SETUP_GO_ACTION: &setup_go_action actions/setup-go@924ae3a1cded613372ab5595356fb5720e22ba16 # v6 | |
| jobs: | |
| check: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Code | |
| uses: *checkout_action | |
| - name: Set up Go | |
| uses: *setup_go_action | |
| with: | |
| go-version: ${{ env.LATEST_GO_VERSION }} | |
| check-latest: true | |
| - name: Run golint | |
| run: | | |
| go install golang.org/x/lint/golint@latest | |
| golint -set_exit_status ./... | |
| - name: Run staticcheck | |
| run: | | |
| go install honnef.co/go/tools/cmd/staticcheck@latest | |
| staticcheck ./... | |
| - name: Run govulncheck | |
| run: | | |
| go version | |
| go install golang.org/x/vuln/cmd/govulncheck@latest | |
| govulncheck ./... |