diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 8d9b83a..2739811 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -15,9 +15,6 @@ jobs: uses: actions/setup-go@v3 with: go-version: ${{ matrix.go-version }} - - name: Install staticcheck - run: go install honnef.co/go/tools/cmd/staticcheck@latest - shell: bash - name: Install golint run: go install golang.org/x/lint/golint@latest shell: bash @@ -26,14 +23,8 @@ jobs: shell: bash - name: Checkout code uses: actions/checkout@v1 - - name: Fmt - if: matrix.platform != 'windows-latest' # :( - run: "diff <(gofmt -d .) <(printf '')" - shell: bash - name: Vet run: go vet ./... - - name: Staticcheck - run: staticcheck ./... - name: Lint run: golint ./... - name: Test