From 86489cc4539a1c125eb69b8a6281e9ce93028059 Mon Sep 17 00:00:00 2001 From: goodboy Date: Thu, 26 Feb 2026 17:20:29 -0500 Subject: [PATCH] Use py version in job `name`, consider macos in linux matrix? --- .github/workflows/ci.yml | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 837cb72f..f85019a9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -75,14 +75,17 @@ jobs: testing-linux: - name: '${{ matrix.os }} Python ${{ matrix.python }} - ${{ matrix.spawn_backend }}' + name: '${{ matrix.os }} Python${{ matrix.python-version }} - spawn_backend=${{ matrix.spawn_backend }}' timeout-minutes: 10 runs-on: ${{ matrix.os }} strategy: fail-fast: false matrix: - os: [ubuntu-latest] + os: [ + ubuntu-latest, + # macos-latest, # ?TODO, better? + ] python-version: [ '3.13', # '3.14', @@ -123,14 +126,16 @@ jobs: run: uv run pytest tests/ --spawn-backend=${{ matrix.spawn_backend }} -rsx testing-macos: - name: '${{ matrix.os }} Python ${{ matrix.python }} - ${{ matrix.spawn_backend }}' + name: '${{ matrix.os }} Python${{ matrix.python-version }} - spawn_backend=${{ matrix.spawn_backend }}' timeout-minutes: 10 runs-on: ${{ matrix.os }} strategy: fail-fast: false matrix: - os: [macos-latest] + os: [ + macos-latest, + ] python-version: [ '3.13', # '3.14',