Skip to content

Commit

Permalink
run unit-tests and lint in parallel in ci
Browse files Browse the repository at this point in the history
  • Loading branch information
walldiss committed Aug 29, 2024
1 parent 50b0a57 commit 07185ab
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/go-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,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 +146,7 @@ jobs:

integration_test:
name: Integration Tests
needs: [lint, go_mod_tidy_check]
needs: [go_mod_tidy_check,lint,lint-imports]

Check failure on line 149 in .github/workflows/go-ci.yml

View workflow job for this annotation

GitHub Actions / yamllint

149:31 [commas] too few spaces after comma

Check failure on line 149 in .github/workflows/go-ci.yml

View workflow job for this annotation

GitHub Actions / yamllint

149:36 [commas] too few spaces after comma
uses: ./.github/workflows/integration-tests.yml
with:
go-version: ${{ inputs.go-version }}

0 comments on commit 07185ab

Please sign in to comment.