Use PyCryptodomex's implementation of TurboSHAKE128 #293
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 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
submodules: true | |
- name: Install Sage | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y sagemath python3-pycryptodome python3-cffi | |
- name: Run tests | |
working-directory: poc | |
run: make test |