Skip to content

chore: reset version to 0.1.0 #15

chore: reset version to 0.1.0

chore: reset version to 0.1.0 #15

Workflow file for this run

name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test:
name: Test on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v1
with:
version: "latest"
- name: Set up Python
run: uv python install 3.14
- name: Install dependencies
run: uv sync
- name: Run Linting with Ruff
run: uv run ruff check .
- name: Run Linting with Pyrefly
run: uv run pyrefly check .
- name: Run Tests
run: uv run pytest