diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 49818d8..db84723 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -26,8 +26,7 @@ jobs: make test - name: Lint - run: | - make staticcheck + uses: dominikh/staticcheck-action@v1.2.0 - name: Check Formatting run: | diff --git a/Makefile b/Makefile index ae703f4..965bc6c 100644 --- a/Makefile +++ b/Makefile @@ -35,9 +35,6 @@ image: image-magneticod image-magneticow vet: go vet ./... -staticcheck: - ./misc/staticcheck/staticcheck -fail all ./... - test: go test ./...