update crates badge image URL #33
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 ecdsa with pip | |
run: pip install ecdsa | |
- name: Download test vectors | |
run: | | |
wget --quiet https://www.gsc-europa.eu/sites/default/files/sites/all/files/Test_vectors.zip | |
unzip Test_vectors.zip | |
- name: Run test vectors | |
run: RUST_LOG_STYLE=always ./utils/run_test_vectors.sh Test_vectors |