Inline and more fixes #7
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: CI | |
| on: [push] | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Install dependencies | |
| run: | | |
| sudo snap install --beta --classic zig | |
| pip install pytest | |
| zig version | |
| - name: Build example | |
| run: pip install ./example | |
| - name: Test example | |
| run: pytest tests |