Skip to content

docs: add list of possible circuits to implement (#1) #2

docs: add list of possible circuits to implement (#1)

docs: add list of possible circuits to implement (#1) #2

Workflow file for this run

name: production
on:
push:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: "20"
cache: yarn
- name: Install Nargo
uses: noir-lang/noirup@v0.1.3
with:
toolchain: 0.26.0
- name: Install dependencies
run: yarn
- name: Get changed files
id: changed-files
uses: tj-actions/changed-files@v44
with:
files_yaml: |
circuits:
- packages/**/*.{nr,toml}
- if: steps.changed-files.outputs.circuits_any_changed == 'true'
name: Test circuits
run: yarn test