Skip to content

feat: support native u128 #31

feat: support native u128

feat: support native u128 #31

Workflow file for this run

name: Noir tests
on: [push]
env:
CARGO_TERM_COLOR: always
jobs:
test:
name: Test on Nargo ${{matrix.toolchain}}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
toolchain: [0.39.0, 1.0.0-beta.0, 1.0.0-beta.1, 1.0.0-beta.2]
steps:
- name: Checkout sources
uses: actions/checkout@v4
- name: Install Nargo
uses: noir-lang/noirup@v0.1.3
with:
toolchain: ${{ matrix.toolchain }}
- name: Run Noir tests
run: |
nargo test
cd tests && nargo test
format:
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v4
- name: Install Nargo
uses: noir-lang/noirup@v0.1.3
with:
toolchain: 1.0.0-beta.2
- name: Run formatter
run: nargo fmt --check