From 358ab3226492af7cf73a82a0db344f1d6d268ddb Mon Sep 17 00:00:00 2001 From: Gerasimos Chourdakis Date: Tue, 20 Jan 2026 17:53:49 +0100 Subject: [PATCH 1/2] Update workflow for wt2526 --- .github/workflows/testing.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/testing.yml b/.github/workflows/testing.yml index c03b7ae..9fec28c 100644 --- a/.github/workflows/testing.yml +++ b/.github/workflows/testing.yml @@ -6,10 +6,10 @@ jobs: style: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 - - uses: actions/setup-python@v2 + - uses: actions/checkout@v6 + - uses: actions/setup-python@v6 with: - python-version: '3.8' + python-version: '3.10' - name: "Install style checker" run: pip install black - name: "Run style check" @@ -26,9 +26,9 @@ jobs: needs: build runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 - - uses: actions/setup-python@v2 + - uses: actions/checkout@v6 + - uses: actions/setup-python@v6 with: - python-version: '3.8' + python-version: '3.10' - name: "Run unittest" run: python -m unittest From 6236a17d57874a83538c3042cbbcdca9ef70e754 Mon Sep 17 00:00:00 2001 From: Gerasimos Chourdakis Date: Tue, 20 Jan 2026 18:01:27 +0100 Subject: [PATCH 2/2] Disable dependency between test and build step --- .github/workflows/testing.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/testing.yml b/.github/workflows/testing.yml index 9fec28c..ba25e8f 100644 --- a/.github/workflows/testing.yml +++ b/.github/workflows/testing.yml @@ -23,7 +23,8 @@ jobs: - name: "Run build phase" run: echo "Building project $PROJECT_NAME" test: - needs: build + # needs: build # We would normally not run the tests if the build fails, + # but letting them go through, for demonstration purposes. runs-on: ubuntu-latest steps: - uses: actions/checkout@v6