documentation + cleanup #5
This file contains 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: Run tests on commit | |
on: | |
push: | |
branches: ['main'] | |
#paths: | |
#- 'crates/**/*' | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@main | |
- name: Install Nargo | |
uses: noir-lang/[email protected] | |
with: | |
toolchain: 0.11.0 | |
- name: Get backend ver | |
run: | | |
nargo backend ls | |
- name: Run tests | |
run: | | |
nargo test | |
- name: Get constraint size | |
run: | | |
nargo info --package chacha20_example |