From 4493afa84db44734eee4ddf8a4c25c5c29323c64 Mon Sep 17 00:00:00 2001 From: Pol Henarejos Date: Mon, 9 Oct 2023 14:46:37 +0200 Subject: [PATCH] Fix workflow Signed-off-by: Pol Henarejos --- .github/workflows/test.yml | 14 ++++---------- 1 file changed, 4 insertions(+), 10 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index c3f5285..a40c61f 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -22,23 +22,17 @@ on: workflow_dispatch: jobs: + build: + uses: ./.github/workflows/build.yml test: runs-on: ubuntu-latest - uses: ./.github/workflows/build.yml + needs: build steps: - - name: Checkout repository and submodules - uses: actions/checkout@v3 - with: - submodules: recursive - name: Test PCSC (pytest) run: ./tests/run-test-in-docker.sh test_pkcs11: runs-on: ubuntu-latest - uses: ./.github/workflows/build.yml + needs: build steps: - - name: Checkout repository and submodules - uses: actions/checkout@v3 - with: - submodules: recursive - name: Test PKCS11 run: ./tests/run-test-pkcs11-in-docker.sh