aboutsummaryrefslogtreecommitdiffhomepage
path: root/.github/workflows
diff options
context:
space:
mode:
authorJán Jančár2025-10-02 19:29:12 +0200
committerGitHub2025-10-02 19:29:12 +0200
commit443780872ee8827078b9fa042bfb829e499a2827 (patch)
tree6ccc8a52e93ed5e3f33df864c3a1539f8aa9cf26 /.github/workflows
parentfd61cf7b86f2b7c61de7794b616c80c23f0ca364 (diff)
parenta76f6671e523f913cd29206cf0491059c1554102 (diff)
downloadpyecsca-codegen-443780872ee8827078b9fa042bfb829e499a2827.tar.gz
pyecsca-codegen-443780872ee8827078b9fa042bfb829e499a2827.tar.zst
pyecsca-codegen-443780872ee8827078b9fa042bfb829e499a2827.zip
Merge pull request #10 from J08nY/feat/equivalence-tests
Equivalence tests
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/test.yml6
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index f2e480d..f9325ca 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -4,11 +4,11 @@ on: [push, pull_request]
env:
LLVM_CONFIG: /usr/bin/llvm-config-14
- OTHER_PACKAGES: swig libpcsclite-dev llvm-14 libllvm14 llvm-14-dev valgrind gcc gcc-arm-none-eabi binutils-arm-none-eabi libnewlib-arm-none-eabi
+ OTHER_PACKAGES: swig libpcsclite-dev llvm-14 libllvm14 llvm-14-dev valgrind gdb gcc gcc-arm-none-eabi binutils-arm-none-eabi libnewlib-arm-none-eabi
jobs:
test:
- runs-on: ubuntu-22.04
+ runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12"]
@@ -50,7 +50,7 @@ jobs:
make test
- name: Test (C)
run: |
- cd test && make test_bn && ./test_bn && cd ..
+ cd test && make test && cd ..
- name: Code coverage
uses: codecov/codecov-action@v3
if: ${{ matrix.python-version == 3.9 }}