Skip to content

Merge pull request #4 from rosstaco/release-please--branches--main--c… #6

Merge pull request #4 from rosstaco/release-please--branches--main--c…

Merge pull request #4 from rosstaco/release-please--branches--main--c… #6

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0 # hatch-vcs needs full history to resolve version from tags
- name: Install uv
uses: astral-sh/setup-uv@v3
- name: Set up Python ${{ matrix.python-version }}
run: uv python install ${{ matrix.python-version }}
- name: Install dependencies
run: uv sync --python ${{ matrix.python-version }}
- name: Lint
run: uv run ruff check
- name: Test
run: uv run pytest