Skip to content

intial commit

intial commit #1

Workflow file for this run

name: Test Python Versions
on:
push:
branches:
- test-973
workflow_dispatch:
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [windows-latest, windows-11-arm, ubuntu-latest, macos-15-intel, macos-latest]
python-version: ['3.13', '3.13t', '3.14', '3.14t']
steps:
- name: Checkout repository
uses: actions/checkout@v6
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
# uses: priyagupta108/setup-python@fix-windows-pip-cache
with:
python-version: ${{ matrix.python-version }}
- name: Check Python version
run: python3 --version