Skip to content

Commit

Permalink
chore(ci): run unit-tests in parallel with lint (#3700)
Browse files Browse the repository at this point in the history
  • Loading branch information
walldiss committed Sep 10, 2024
1 parent ce22484 commit 1a1286f
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/go-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,6 @@ jobs:
with:
args: --timeout 10m
version: v1.60
skip-cache: true

lint-imports:
needs: [setup]
Expand Down Expand Up @@ -83,7 +82,7 @@ jobs:
run: git diff --exit-code

test_coverage:
needs: [lint, go_mod_tidy_check, setup]
needs: [setup]
name: Unit Tests Coverage
strategy:
fail-fast: false
Expand Down Expand Up @@ -146,7 +145,7 @@ jobs:

integration_test:
name: Integration Tests
needs: [lint, go_mod_tidy_check]
needs: [go_mod_tidy_check, lint, lint-imports, test_coverage]
uses: ./.github/workflows/integration-tests.yml
with:
go-version: ${{ inputs.go-version }}

0 comments on commit 1a1286f

Please sign in to comment.