diff --git a/.github/workflows/python.yml b/.github/workflows/python.yml index 52de823..ecf970d 100644 --- a/.github/workflows/python.yml +++ b/.github/workflows/python.yml @@ -18,14 +18,15 @@ permissions: jobs: analyse-supported: - name: testing on supported versions - continue-on-error: true strategy: fail-fast: false matrix: os: [ubuntu-latest] supported-python-version: ["3.9", "3.10", "3.11", "3.12"] best_effort-python-version: ["3.7"] + name: Testing on Python ${{ matrix.supported-python-version }} + continue-on-error: true + runs-on: ${{ matrix.os }} @@ -75,14 +76,14 @@ jobs: pytest analyse-best_effort: - name: static analysis on best effort - continue-on-error: true strategy: fail-fast: false matrix: os: [ubuntu-latest] base-python-version: ["3.11"] best_effort-python-version: ["3.7"] + name: Static analysis on Python ${{ matrix.best_effort-python-version }} + continue-on-error: true runs-on: ${{ matrix.os }}