Skip to content

Commit

Permalink
ci: add workflow to run tests vectors
Browse files Browse the repository at this point in the history
  • Loading branch information
daniestevez committed Jan 23, 2024
1 parent b9c5ff0 commit f00c07c
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/test-vectors.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
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: 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
- name: Run test vectors (debug output)
run: RUST_LOG=debug RUST_LOG_STYLE=always ./utils/run_test_vectors.sh Test_vectors

0 comments on commit f00c07c

Please sign in to comment.