Skip to content

Include project.urls in pyproject.toml #20

Include project.urls in pyproject.toml

Include project.urls in pyproject.toml #20

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
jobs:
lint-and-test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.11", "3.12", "3.13"]
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Set up uv
uses: astral-sh/setup-uv@v4
with:
enable-cache: true
cache-dependency-glob: |
uv.lock
pyproject.toml
- name: Install dependencies
run: make sync
- name: Lint with ruff
run: make lint
- name: Run tests
run: make tests