use the common CI workflow (#182) #402
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: CI | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
build: | |
uses: status-im/nimbus-common-workflow/.github/workflows/common.yml@main | |
with: | |
test-command: | | |
# Dependencies not declared in "blscurve.nimble" as they are only used | |
# for testing: | |
nimble install -y stint | |
pushd tests | |
bash download_ef_bls12381_vectors.sh | |
popd | |
# Run the tests. | |
nimble test |