Skip to content

Commit

Permalink
trying to sync the jobs
Browse files Browse the repository at this point in the history
  • Loading branch information
dmichaels-harvard committed Oct 5, 2023
1 parent e0987ff commit e5490d7
Showing 1 changed file with 22 additions and 1 deletion.
23 changes: 22 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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]

0 comments on commit e5490d7

Please sign in to comment.