Skip to content

fix: fix compilation failures and add ci #2

fix: fix compilation failures and add ci

fix: fix compilation failures and add ci #2

Workflow file for this run

name: Noir tests
on:
push:
branches:
- master
pull_request:
env:
CARGO_TERM_COLOR: always
jobs:
test:
name: Test on Nargo ${{matrix.toolchain}}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
toolchain: [nightly, 0.32.0]
steps:
- name: Checkout sources
uses: actions/checkout@v4
- name: Install Nargo
uses: noir-lang/[email protected]
with:
toolchain: ${{ matrix.toolchain }}
- name: Run Noir tests
run: nargo test
# Disabled as the formatter panics
# format:
# runs-on: ubuntu-latest
# steps:
# - name: Checkout sources
# uses: actions/checkout@v4
# - name: Install Nargo
# uses: noir-lang/[email protected]
# with:
# toolchain: 0.32.0
# - name: Run formatter
# run: nargo fmt --check