We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a42b08b commit aed70d4Copy full SHA for aed70d4
1 file changed
.github/workflows/ci.yml
@@ -32,19 +32,18 @@ jobs:
32
extra_args: --hook-stage manual --all-files
33
34
checks:
35
- name: Test on ${{ matrix.runs-on }} Python ${{ matrix.python-version }}
36
- runs-on: ${{ matrix.runs-on }}
+ name: Test ${{ matrix.runs-on.short }}-py${{ matrix.python-version }}
+ runs-on: ${{ matrix.runs-on.name }}
37
needs: [pre-commit]
38
strategy:
39
fail-fast: false
40
matrix:
41
- runs-on: [ubuntu-latest, windows-latest, macos-14]
+ runs-on:
42
+ - { short: linux, name: ubuntu-latest }
43
+ - { short: win, name: windows-latest }
44
+ - { short: macos, name: macos-14 }
45
python-version: ["3.12"]
46
- include:
- - runs-on: ubuntu-latest
- python-version: "3.13"
47
-
48
steps:
49
- uses: actions/checkout@v4
50
with:
0 commit comments