Skip to content

update ci

update ci #1

Workflow file for this run

name: Basic Test
# Controls when the action will run. Workflow runs when manually triggered using the UI
# or API.
on:
push:
branches: [ dev ]
pull_request:
branches: [ dev ]
jobs:
build:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ['3.10', '3.11', '3.12', '3.13']
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 1
ref: dev
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install .