Skip to content

Refactored from_json methods of Groth16Proof and Groth16VerifyingKe… #344

Refactored from_json methods of Groth16Proof and Groth16VerifyingKe…

Refactored from_json methods of Groth16Proof and Groth16VerifyingKe… #344

Workflow file for this run

name: Cairo 1 tests
on:
push:
branches: [main]
pull_request:
jobs:
pre_job:
# continue-on-error: true # Uncomment once integration is finished
runs-on: ubuntu-latest
# Map a step output to a job output
outputs:
should_skip: ${{ steps.skip_check.outputs.should_skip }}
steps:
- id: skip_check
uses: fkirc/skip-duplicate-actions@v5
with:
concurrent_skipping: 'same_content_newer'
test-cairo:
needs: pre_job
if: needs.pre_job.outputs.should_skip != 'true'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: software-mansion/setup-scarb@v1
with:
scarb-version: "2.8.2"
- run: scarb fmt --check
working-directory: src/
- run: cd src/ && scarb test