Skip to content

add test workflow

add test workflow #3

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: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
python-version: [3.11]
steps:
- uses: actions/checkout@v4
- name: Prework
run: touch pyproject.toml
- name: Setup Python
uses: actions-ext/python/setup@v1
with:
version: '3.9'
- name: Setup Python
uses: actions-ext/python/setup-cache@v1
- name: Setup cibuildwheel
uses: actions-ext/python/setup-cibuildwheel@v1
with:
version: '3.9'
- name: Setup cibuildwheel caching
uses: actions-ext/python/setup-cibuildwheel-cache@v1