Skip to content

Commit

Permalink
Add CI jobs for Python 3.8, 3.9, and 3.10
Browse files Browse the repository at this point in the history
  • Loading branch information
dnicolodi committed May 27, 2024
1 parent 7cb0a35 commit 5073c2b
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/default.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@ jobs:
python-version: [
'3.12',
'3.11',
'3.10',
'3.9',
'3.8',
]

steps:
Expand All @@ -33,7 +36,7 @@ jobs:
python -m pip install --upgrade pip
pip install --upgrade --requirement requirements-test.txt
- name: lint
# if: ${{ matrix.python-version == '3.12' }}
if: ${{ matrix.python-version == '3.12' }}
run: |
make lint
- name: pytest
Expand All @@ -43,6 +46,7 @@ jobs:
run: |
make examples
- name: documentation
if: ${{ matrix.python-version == '3.12' }}
run: |
make documentation
- name: distributions
Expand Down

0 comments on commit 5073c2b

Please sign in to comment.