From e5490d73c5c739681c4a346050a42526c04e48fc Mon Sep 17 00:00:00 2001 From: David Michaels Date: Thu, 5 Oct 2023 15:43:17 -0400 Subject: [PATCH] trying to sync the jobs --- .github/workflows/main.yml | 23 ++++++++++++++++++++++- 1 file changed, 22 insertions(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 3fc7b65f..7081d1dc 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -21,7 +21,7 @@ jobs: runs-on: ubuntu-22.04 strategy: matrix: - python_version: ['3.8'] + python_version: ['3.8', '3.9', '3.10', '3.11'] # Steps represent a sequence of tasks that will be executed as part of the job steps: @@ -48,3 +48,24 @@ jobs: - name: QA (unit) run: | poetry run invoke test --no-flake +jobs: + build_python3_8: + needs: build + strategy: + matrix: + python-version: [3.8] + build_python3_9: + needs: build_python3_8 + strategy: + matrix: + python-version: [3.9] + build_python3_10: + needs: build_python3_9 + strategy: + matrix: + python-version: [3.10] + build_python3_11: + needs: build_python3_10 + strategy: + matrix: + python-version: [3.11]