Documentation #31
Workflow file for this run
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: test example | |
on: [push, pull_request] | |
jobs: | |
test: | |
name: nargo test | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install Nargo | |
uses: noir-lang/[email protected] | |
with: | |
toolchain: 0.19.2 | |
- name: Run example nargo test | |
run: | | |
rm Nargo.toml | |
cd examples/base64_example/ | |
nargo test --show-output |