Skip to content

Merge pull request #4 from actions-ext/dependabot/github_actions/acti… #32

Merge pull request #4 from actions-ext/dependabot/github_actions/acti…

Merge pull request #4 from actions-ext/dependabot/github_actions/acti… #32

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@v6
- 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