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 19f3d35
Showing 1 changed file with 9 additions and 1 deletion.
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.12" ]

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

0 comments on commit 19f3d35

Please sign in to comment.