Fix workflow

Signed-off-by: Pol Henarejos <pol.henarejos@cttc.es>
This commit is contained in:
Pol Henarejos
2023-10-09 14:46:37 +02:00
parent d118b787a2
commit 4493afa84d

View File

@@ -22,23 +22,17 @@ on:
workflow_dispatch: workflow_dispatch:
jobs: jobs:
build:
uses: ./.github/workflows/build.yml
test: test:
runs-on: ubuntu-latest runs-on: ubuntu-latest
uses: ./.github/workflows/build.yml needs: build
steps: steps:
- name: Checkout repository and submodules
uses: actions/checkout@v3
with:
submodules: recursive
- name: Test PCSC (pytest) - name: Test PCSC (pytest)
run: ./tests/run-test-in-docker.sh run: ./tests/run-test-in-docker.sh
test_pkcs11: test_pkcs11:
runs-on: ubuntu-latest runs-on: ubuntu-latest
uses: ./.github/workflows/build.yml needs: build
steps: steps:
- name: Checkout repository and submodules
uses: actions/checkout@v3
with:
submodules: recursive
- name: Test PKCS11 - name: Test PKCS11
run: ./tests/run-test-pkcs11-in-docker.sh run: ./tests/run-test-pkcs11-in-docker.sh