Skip to content

Commit

Permalink
WIP: Run multiple Python versions during tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Huite committed Dec 4, 2023
1 parent 1aa1564 commit 2a9fc23
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,17 @@ jobs:
uses: actions/checkout@v2
- name: Setup Pixi
uses: prefix-dev/[email protected]
- name: Run Tests
- name: install py3.9
run: pixi add python=3.9
- name: Run Tests 3.9
run: pixi run test
- name: install py3.10
run: pixi add python=3.10
- name: Run Tests 3.10
run: pixi run test
- name: install py3.11
run: pixi add python=3.11
- name: Run Tests 3.11
run: pixi run test
- name: Publish Code Coverage
uses: codecov/codecov-action@v3
Expand Down

0 comments on commit 2a9fc23

Please sign in to comment.