Add checks that prefix counts are consistent across multiple VDAF executions #316
Workflow file for this run
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: Test | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- '.github/workflows/test.yml' | |
- 'poc/**' | |
pull_request: | |
paths: | |
- '.github/workflows/test.yml' | |
- 'poc/**' | |
jobs: | |
test: | |
name: "Run unit tests for reference code" | |
runs-on: ubuntu-latest | |
container: | |
image: sagemath/sagemath:latest | |
options: --user root | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Install dependencies | |
run: sage --pip install pycryptodomex | |
- name: Run tests | |
working-directory: poc | |
run: sage -python -m unittest |