Skip to content

Commit

Permalink
Github action: build with 3.10 to 3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
lbesnard committed Jul 5, 2024
1 parent 519c44b commit 928793c
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,13 @@ on:
jobs:
build-linux:
runs-on: ubuntu-latest
strategy:
matrix:
python-version:
- '3.10.14'
- '3.11.9'
- '3.12.4'

defaults:
run:
shell: bash -e {0}
Expand All @@ -22,7 +29,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.10.14'
python-version: ${{ matrix.python-version }}

#----------------------------------------------
# ----- install & configure poetry -----
Expand Down

0 comments on commit 928793c

Please sign in to comment.