diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index c698a21..4ef9222 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -3,27 +3,6 @@ name: Linter & Tests on: [push] jobs: - linter: - name: Linter - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@master - with: - fetch-depth: 1 - - uses: actions/setup-go@v1 - with: - go-version: '1.15.x' - - name: golangci-lint - uses: golangci/golangci-lint-action@v2 - with: - version: v1.31 - - name: Install golint - run: go get -v golang.org/x/lint/golint - - name: Run golint - run: | - export PATH=$PATH:$(go env GOPATH)/bin - golint ./... - tests: name: Tests runs-on: ubuntu-latest