Skip to content

Commit

Permalink
Shorten job names and skip Python 3.13 for now
Browse files Browse the repository at this point in the history
No real value in testing on Python 3.13 right now during early
development. Should be more useful once its used in "production".
  • Loading branch information
lagru committed Oct 7, 2024
1 parent a42b08b commit aed70d4
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,19 +32,18 @@ jobs:
extra_args: --hook-stage manual --all-files

checks:
name: Test on ${{ matrix.runs-on }} Python ${{ matrix.python-version }}
runs-on: ${{ matrix.runs-on }}
name: Test ${{ matrix.runs-on.short }}-py${{ matrix.python-version }}
runs-on: ${{ matrix.runs-on.name }}
needs: [pre-commit]
strategy:
fail-fast: false
matrix:
runs-on: [ubuntu-latest, windows-latest, macos-14]
runs-on:
- { short: linux, name: ubuntu-latest }
- { short: win, name: windows-latest }
- { short: macos, name: macos-14 }
python-version: ["3.12"]

include:
- runs-on: ubuntu-latest
python-version: "3.13"

steps:
- uses: actions/checkout@v4
with:
Expand Down

0 comments on commit aed70d4

Please sign in to comment.