Skip to content

Commit

Permalink
Added matrix with Python versions 3.9-3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
albireox committed Jun 10, 2024
1 parent 9e6b155 commit 65434c7
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,11 @@ jobs:
build:
runs-on: ubuntu-latest

strategy:
matrix:
python-version: ['3.9', '3.10', '3.11', '3.12']


steps:
- name: Clone access
uses: actions/checkout@v4
Expand All @@ -24,7 +29,7 @@ jobs:
- name: Set up Python 3.9
uses: actions/setup-python@v4
with:
python-version: 3.9
python-version: ${{ matrix.python-version }}

- name: Install tree package
run: |
Expand Down Expand Up @@ -70,4 +75,4 @@ jobs:
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
with:
file: ./access/coverage.xml
file: ./access/coverage.xml

0 comments on commit 65434c7

Please sign in to comment.