Skip to content

Commit e3338ab

Browse files
committed
Build the final binary after tests
1 parent c350e29 commit e3338ab

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

.github/workflows/build.yml

+7-4
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,14 @@ jobs:
2424
python-version: '3.13'
2525
cache: 'pip'
2626

27-
- run: zig build --release=fast
28-
- run: zig build unit-tests --summary all
27+
- name: Install e2e test requirements
28+
run: pip install -r tests/requirements.txt
2929

30-
- run: pip install -r tests/requirements.txt
31-
- run: pytest -v tests/
30+
- name: Run tests
31+
run: zig build test --summary all
32+
33+
- name: Build release binary
34+
run: zig build --release=fast
3235

3336
- name: Log in to the Container registry
3437
if: github.event_name != 'pull_request'

0 commit comments

Comments
 (0)