Skip to content

ci

ci #507

Workflow file for this run

name: "ci"
on:
push:
schedule:
- cron: "0 */2 * * *" # Runs every 2 hours
jobs:
test:
# The type of runner that the job will run on
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ ubuntu-latest, windows-latest, macos-latest ]
python-version: [ '3.10', '3.11', '3.12', '3.13' ]
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
- name: Checkout [${{ github.repository }}]
uses: actions/checkout@v4
- uses: cvxgrp/.github/actions/uv/[email protected]
with:
python-version: ${{ matrix.python-version }}