From 785d99106ca54f04c2dd9fc5ed2ebbce189e16ee Mon Sep 17 00:00:00 2001 From: krystian-wojakiewicz Date: Tue, 18 Jun 2024 17:17:16 +0200 Subject: [PATCH] Remove linter and goveralls --- .github/workflows/go.yml | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 9909599..82360a4 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -1,16 +1,6 @@ name: Go on: [push, pull_request] jobs: - golangci: - name: lint - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - - name: golangci-lint - uses: golangci/golangci-lint-action@v1 - with: - # Required: the version of golangci-lint is required and must be specified without patch version: we always use the latest patch version. - version: v1.26 test: name: test runs-on: ubuntu-latest @@ -37,9 +27,3 @@ jobs: go mod download - name: Test run: go test -v -covermode atomic -coverprofile=profile.cov ./... - - name: Coverage - env: - COVERALLS_TOKEN: ${{ secrets.GITHUB_TOKEN }} - run: | - GO111MODULE=off go get github.com/mattn/goveralls - $(go env GOPATH)/bin/goveralls -coverprofile=profile.cov -service=github