Merge pull request #72 from numtel/fflonk_calldata #34
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: tests | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install dependencies | |
run: | | |
sudo apt-get update | |
sudo apt-get install --yes \ | |
build-essential \ | |
libgmp-dev \ | |
libsodium-dev \ | |
nasm \ | |
nlohmann-json3-dev | |
- name: Download Circom Binary v2.1.5 | |
run: | | |
wget -qO /home/runner/work/circom https://github.com/iden3/circom/releases/download/v2.1.5/circom-linux-amd64 | |
chmod +x /home/runner/work/circom | |
sudo mv /home/runner/work/circom /bin/circom | |
- name: Print Circom version | |
run: circom --version | |
- name: Install dependencies | |
run: yarn | |
- name: Build everything | |
run: yarn build | |
- name: Run tests | |
run: yarn test |