2023-07-17 05:04:05 +00:00
|
|
|
name: crypto/ Tests
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- develop
|
|
|
|
paths:
|
|
|
|
- "common/**"
|
|
|
|
- "crypto/**"
|
2023-07-20 23:34:10 +00:00
|
|
|
|
2023-07-17 05:04:05 +00:00
|
|
|
pull_request:
|
2023-07-20 23:34:10 +00:00
|
|
|
paths:
|
|
|
|
- "common/**"
|
|
|
|
- "crypto/**"
|
|
|
|
|
2023-07-17 05:04:05 +00:00
|
|
|
workflow_dispatch:
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
test-crypto:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2023-09-15 18:30:18 +00:00
|
|
|
- uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac
|
2023-07-17 05:04:05 +00:00
|
|
|
|
2023-10-26 19:15:29 +00:00
|
|
|
- name: Build Dependencies
|
|
|
|
uses: ./.github/actions/build-dependencies
|
2023-07-17 05:04:05 +00:00
|
|
|
|
|
|
|
- name: Run Tests
|
|
|
|
run: |
|
2023-08-14 15:59:23 +00:00
|
|
|
GITHUB_CI=true RUST_BACKTRACE=1 cargo test --all-features \
|
2023-07-17 05:04:05 +00:00
|
|
|
-p flexible-transcript \
|
|
|
|
-p ff-group-tests \
|
|
|
|
-p dalek-ff-group \
|
|
|
|
-p minimal-ed448 \
|
|
|
|
-p ciphersuite \
|
|
|
|
-p multiexp \
|
|
|
|
-p schnorr-signatures \
|
|
|
|
-p dleq \
|
|
|
|
-p dkg \
|
|
|
|
-p modular-frost \
|
|
|
|
-p frost-schnorrkel
|