Skip to content

Commit

Permalink
test: run functional tests with different Python versions
Browse files Browse the repository at this point in the history
  • Loading branch information
ilfa committed Aug 7, 2024
1 parent a8d666f commit e4b3548
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
10 changes: 9 additions & 1 deletion .github/workflows/functional_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,21 @@ on:

jobs:
functional_tests:
name: Functional tests for Python ${{ matrix.python-version }}
runs-on: "ubuntu-latest"
environment: test

strategy:
fail-fast: false
max-parallel: 1
matrix:
python-version: [ "3.9", "3.10", "3.11", "3.12", "pypy3.9", "pypy3.10" ]

steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.12"
python-version: ${{ matrix.python-version }}
- name: "Install dependencies"
run: |
python -m pip install --upgrade pip
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:

strategy:
matrix:
python-version: [ "3.9", "3.10", "3.11", "3.12", "pypy3.9", "pypy3.12" ]
python-version: [ "3.9", "3.10", "3.11", "3.12", "pypy3.9", "pypy3.10" ]

steps:
- uses: actions/checkout@v4
Expand Down

0 comments on commit e4b3548

Please sign in to comment.