Skip to content

Commit

Permalink
Make tests for Python 3.12 are experimental
Browse files Browse the repository at this point in the history
  • Loading branch information
Limych committed Nov 22, 2023
1 parent 2d89ca6 commit 744fd57
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/py-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,13 +60,18 @@ jobs:
pylint ${{ env.package }} tests
tests:
name: "Test package"
name: Test package on Python ${{ matrix.python-version }}
needs: lint
runs-on: ubuntu-latest
continue-on-error: ${{ matrix.experimental }}
strategy:
max-parallel: 3
matrix:
python-version: ['3.10', '3.11', '3.12']
python-version: ['3.10', '3.11']
experimental: [false]
include:
- python-version: '3.12'
experimental: true
steps:
- name: "Checkout code"
uses: actions/checkout@v4
Expand Down

0 comments on commit 744fd57

Please sign in to comment.