Skip to content

Add support for 13, 13t, 14, 14t #16

Add support for 13, 13t, 14, 14t

Add support for 13, 13t, 14, 14t #16

Workflow file for this run

name: Build Status
on:
push:
branches:
- main
pull_request:
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
permissions:
checks: write
pull-requests: write
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.11, 3.12, 3.13, '3.13t', 3.14, '3.14t']
steps:
- uses: actions/checkout@v5
- name: Prework
run: touch pyproject.toml
- name: Setup Python
uses: actions-ext/python/setup@main
with:
version: ${{ matrix.python-version }}
- name: Setup cibuildwheel
uses: actions-ext/python/setup-cibuildwheel@main
with:
version: ${{ matrix.python-version }}
- name: Setup cibuildwheel caching
uses: actions-ext/python/setup-cibuildwheel-cache@main