diff --git a/.github/workflows/coverage.yaml b/.github/workflows/coverage.yaml index a833572..53f1b0b 100644 --- a/.github/workflows/coverage.yaml +++ b/.github/workflows/coverage.yaml @@ -5,7 +5,7 @@ on: - main - deps-update jobs: - test: + coverage: name: Test Coverage runs-on: ubuntu-latest steps: @@ -22,6 +22,9 @@ jobs: - name: Setup Dependencies run: go mod download + - name: Lint + uses: golangci/golangci-lint-action@v3 + - name: Run Tests run: make test-cov diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 3aeecea..00953e7 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -16,10 +16,5 @@ jobs: with: go-version-file: go.mod - - name: Lint - uses: golangci/golangci-lint-action@v3 - with: - args: -v - - name: Run tests run: make test