We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c350e29 commit e3338abCopy full SHA for e3338ab
.github/workflows/build.yml
@@ -24,11 +24,14 @@ jobs:
24
python-version: '3.13'
25
cache: 'pip'
26
27
- - run: zig build --release=fast
28
- - run: zig build unit-tests --summary all
+ - name: Install e2e test requirements
+ run: pip install -r tests/requirements.txt
29
30
- - run: pip install -r tests/requirements.txt
31
- - run: pytest -v tests/
+ - name: Run tests
+ run: zig build test --summary all
32
+
33
+ - name: Build release binary
34
+ run: zig build --release=fast
35
36
- name: Log in to the Container registry
37
if: github.event_name != 'pull_request'
0 commit comments