update README #24
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 vectors | |
on: [push, pull_request] | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
test_vectors: | |
name: Test vectors | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install protoc | |
run: | | |
sudo apt-get update | |
sudo apt-get install protobuf-compiler | |
- name: Install ecdsda with pip | |
run: pip install ecdsa | |
- name: Download test vectors | |
run: | | |
wget --quiet https://www.gsc-europa.eu/sites/default/files/sites/all/files/Annex_B_Test_Vectors.zip | |
unzip Annex_B_Test_Vectors.zip | |
- name: Run test vectors | |
run: RUST_LOG_STYLE=always ./utils/run_test_vectors.sh Test_vectors |