Skip to content

Commit

Permalink
Run e2e tests on multiple Python versions
Browse files Browse the repository at this point in the history
  • Loading branch information
kgodlewski committed Nov 15, 2024
1 parent 78e5a13 commit 809b232
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/tests-e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,17 @@ on:
jobs:
test:
runs-on: arc-runner-set
strategy:
matrix:
python-version: [ "3.8", "3.9", "3.10", "3.11", "3.12", "3.13" ]
steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: Install Python
uses: actions/setup-python@v5
with:
python-version: 3.9
python-version: ${{ matrix.python-version }}

- name: Install dependencies
run: |
Expand Down

0 comments on commit 809b232

Please # to comment.