diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index ebeb72d..0eace44 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -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