Skip to content

Add GitHub workflow

Add GitHub workflow #1

Workflow file for this run

name: Noir
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install Noir toolchain
uses: noir-lang/[email protected]
with:
toolchain: nightly
- name: Run tests
run: |
nargo test
- name: Prove examples
run: |
nargo prove --workspace
- name: Verify examples
run: |
nargo verify --workspace