From 205356b848e456d2f77a3f6e7a5ee3cad5d858ad Mon Sep 17 00:00:00 2001 From: Pol Henarejos Date: Mon, 9 Oct 2023 14:21:55 +0200 Subject: [PATCH] Let's try different jobs Signed-off-by: Pol Henarejos --- .github/workflows/test.yml | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 230db48..43497d8 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -23,9 +23,7 @@ on: jobs: build: - runs-on: ubuntu-latest - steps: - name: Checkout repository and submodules uses: actions/checkout@v3 @@ -33,7 +31,15 @@ jobs: submodules: recursive - name: Build in container run: ./tests/build-in-docker.sh - - name: Start emulation and test + test: + runs-on: ubuntu-latest + needs: build + steps: + - name: Test PCSC (pytest) run: ./tests/run-test-in-docker.sh + test_pkcs11: + runs-on: ubuntu-latest + needs: build + steps: - name: Test PKCS11 run: ./tests/run-test-pkcs11-in-docker.sh