Skip to content

Commit 9b56837

Browse files
committed
Try to run python tests in github actions
1 parent 0fa9c95 commit 9b56837

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

.github/workflows/build.yml

+8
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,14 @@ jobs:
2222
- run: zig build test --summary all
2323
- run: zig build
2424

25+
- uses: actions/setup-python@v5
26+
with:
27+
python-version: '3.13'
28+
cache: 'pip'
29+
30+
- run: pip install pytest requests
31+
- run: pytest -v tests/
32+
2533
- name: Log in to the Container registry
2634
if: github.event_name != 'pull_request'
2735
uses: docker/login-action@v3

0 commit comments

Comments
 (0)