We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f66cdb9 commit ff875a4Copy full SHA for ff875a4
.github/workflows/ci.yml
@@ -10,7 +10,10 @@ jobs:
10
sudo snap install --beta --classic zig
11
pip install pytest
12
zig version
13
+ - name: Run zig tests
14
+ run: zig test py.zig -I/usr/include -I$(python -c "import sysconfig;print(sysconfig.get_path(\"include\"))") -L$(python -c "import sysconfig;print(sysconfig.get_config_var(\"LIBDIR\"))") -lpython$(python -c "import sysconfig;print(sysconfig.get_python_version())")
15
- name: Build example
16
run: pip install ./example
- - name: Test example
17
+ - name: Run pytests
18
run: pytest tests
19
+
0 commit comments