Skip to content

Commit

Permalink
ci(test.yaml): test using multiple versions of python
Browse files Browse the repository at this point in the history
  • Loading branch information
slaclau committed Nov 7, 2024
1 parent fd8a377 commit e39caed
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ on:
jobs:
test:
runs-on: ubuntu-24.04
strategy:
matrix:
python-version: [ "3.9", "3.10", "3.11", "3.12", "3.13" ]
steps:
- name: Checkout
uses: actions/checkout@v4
Expand All @@ -14,7 +17,7 @@ jobs:
- name: Setup python
uses: actions/setup-python@v5
with:
python-version: '3.12'
python-version: ${{ matrix.python-version }}
cache: 'pip'
- name: Install apt packages
run: |
Expand All @@ -34,7 +37,7 @@ jobs:
if: always()
uses: actions/upload-artifact@v4
with:
name: demo
name: demo-${{ matrix.python-version }}
path: test/demo/broadway/results
- name: Upload report artifact
if: always()
Expand Down

0 comments on commit e39caed

Please sign in to comment.