Skip to content

Commit

Permalink
Test on all older python versions
Browse files Browse the repository at this point in the history
  • Loading branch information
dlesbre committed Aug 7, 2024
1 parent 7b4ff61 commit 315e9f4
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions .github/workflows/python-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ permissions:
contents: read

jobs:
test-3-11:
test-latest:
runs-on: ubuntu-latest
name: "Static checks and test (python 3.12)"

Expand All @@ -35,16 +35,19 @@ jobs:
- name: Test with pytest
run: make test

test-3-8:
test-older:
runs-on: ubuntu-latest
name: "Test (python 3.8)"
name: "Tests python"
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11"]

steps:
- uses: actions/checkout@v3
- name: Set up Python 3.8
- name: Set up Python $
uses: actions/setup-python@v3
with:
python-version: "3.8"
python-version: $
- name: Install dependencies
run: make setup-dev
- name: Check script
Expand Down

0 comments on commit 315e9f4

Please sign in to comment.