Skip to content
This repository has been archived by the owner on Jan 20, 2024. It is now read-only.

Commit

Permalink
ci: update job name based on Python version
Browse files Browse the repository at this point in the history
  • Loading branch information
validcube committed Nov 20, 2023
1 parent 4737415 commit 44fd21c
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}

Expand Down Expand Up @@ -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 }}

Expand Down

0 comments on commit 44fd21c

Please sign in to comment.