Skip to content

Commit

Permalink
ci: run tests only for test job
Browse files Browse the repository at this point in the history
Running default `make` targets results in running linter before the
actual tests are executed. As we have separate job for linter we should
focus on running tests instead so we can get feedback for both aspects
at the same time when PR is opened/updated. Currently both jobs fail on
linter so tests are never executed.

In order to run tests for test job, `make test` target is invoked
instead.
  • Loading branch information
bartoszmajsak committed Sep 4, 2024
1 parent d84c4c6 commit 86a0dbc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ jobs:
- uses: actions/setup-go@v5
with:
go-version-file: go.mod
- run: make
- run: make test

0 comments on commit 86a0dbc

Please sign in to comment.