Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
A new github workflow added at `.github/workflows/ci.yaml` with three jobs: - `build-cargo`: Sets up Rust toolchain (stable), checks out the current repository, places `reilabs/noir` at the appropriate folder, and finally runs `cargo build --release`. - `test-cargo`: Depends on `build-cargo`. Runs the same steps, except the final step is replaced by a `cargo test` run. - `build-lake`: Sets up Lean4 toolchain, checks out the current repository sparsely (i.e., only the `Lake` folder is fetched) and runs `lake build`. The workflow runs on `push` and `pull-request` events.
- Loading branch information