Skip to content

Update pypi action version #7

Update pypi action version

Update pypi action version #7

Workflow file for this run

name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- name: "Set up Python"
uses: actions/setup-python@v5
with:
python-version-file: "pyproject.toml"
- name: Install uv
uses: astral-sh/setup-uv@v6
with:
enable-cache: true
- name: Install the project
run: uv sync --locked --all-extras --dev
- name: Lint with ruff
run: uv run ruff check .
- name: Format with ruff
run: uv run ruff format --check .
# - name: Type check with mypy
# run: uv run mypy .
- name: Test with pytest
run: uv run -m pytest