Skip to content

Commit 4421e25

Browse files
committed
ci: run unit tests locally; simplify config
There is no need to spawn a docker container for unit tests; run those locally. Signed-off-by: Kir Kolyshkin <[email protected]>
1 parent de4c69a commit 4421e25

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/test.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,9 @@ jobs:
2424
- name: Run tests
2525
env:
2626
GOLANG_VERSION: ${{ matrix.go-versions }}
27-
run: source ${{ matrix.environment-variables }} && make docker-test
27+
run: |
28+
source ${{ matrix.environment-variables }}
29+
make test
2830
test-integration:
2931
strategy:
3032
matrix:

0 commit comments

Comments
 (0)