Skip to content

Bump kurtmckee/github-workflows from 1.4 to 1.5 in the github-actions… #150

Bump kurtmckee/github-workflows from 1.4 to 1.5 in the github-actions…

Bump kurtmckee/github-workflows from 1.4 to 1.5 in the github-actions… #150

Workflow file for this run

name: "🧪 Test"
on:
pull_request:
push:
branches:
- "main"
- "releases"
jobs:
test:
name:
"${{
(startswith(matrix.runner, 'ubuntu') && 'Linux')
|| (startswith(matrix.runner, 'macos') && 'macOS')
|| (startswith(matrix.runner, 'windows') && 'Windows')
}}"
strategy:
fail-fast: false
matrix:
runner:
- "ubuntu-24.04"
- "macos-15"
- "windows-2025"
include:
# These values will be applied to all runners listed above.
- cpythons:
- "3.10"
- "3.11"
- "3.12"
- "3.13"
cpython-beta: "3.14"
cache-paths:
- ".mypy_cache/"
cache-key-hash-files:
- "pyproject.toml"
- "requirements/*/*.txt"
uses: "kurtmckee/github-workflows/.github/workflows/tox.yaml@a8716fc28daeb38133a50ef8dce70df9c65988ad" # v1.5
with:
config: "${{ toJSON(matrix) }}"