Skip to content

feat: add makefile commands for ultra_honk. fix: fmt warning #22

feat: add makefile commands for ultra_honk. fix: fmt warning

feat: add makefile commands for ultra_honk. fix: fmt warning #22

Workflow file for this run

name: noir
on:
pull_request:
branches: [main]
push:
branches: [main]
workflow_dispatch:
permissions:
contents: read
jobs:
fmt-noir:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Install Nargo
uses: noir-lang/noirup@v0.1.3
- name: Run nargo fmt
run: nargo fmt --check
check-noir:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Install Nargo
uses: noir-lang/noirup@v0.1.3
- name: Run nargo check
run: nargo check --deny-warnings
test-noir:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Install Nargo
uses: noir-lang/noirup@v0.1.3
- name: Run nargo test
run: nargo test --deny-warnings