Skip to content

Commit

Permalink
disable staticcheck
Browse files Browse the repository at this point in the history
  • Loading branch information
topi314 committed Mar 26, 2022
1 parent af468c4 commit b9c67fa
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,8 @@ jobs:
gostaticcheck:
# We want to run on external PRs, but not on our own internal PRs as they'll be run
# by the push to the branch.
if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository
if: ${{ false }} # disable for now as staticcheck does not working with go 1.18
# if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
Expand Down

0 comments on commit b9c67fa

Please sign in to comment.