Skip to content

Initial

Initial #1

Workflow file for this run

name: CI
on: [push]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install dependencies
run: |
sudo snap install zig --classic
pip install pytest
zig version
- name: Build example
run: pip install ./example
- name: Test example
run: pytest tests