Skip to content

Initial commit with content #46

Initial commit with content

Initial commit with content #46

Workflow file for this run

name: CI
permissions:
contents: read
pull-requests: read
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
pre-commit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7
- uses: actions/setup-python@v6
with:
python-version: "3.x"
- run: pip install uv
- run: uv sync --group dev
- run: uv run pre-commit run --all-files
pytest:
runs-on: ubuntu-latest
needs: pre-commit
strategy:
matrix:
python-version:
- "3.12"
steps:
- uses: actions/checkout@v7
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- run: pip install uv
- run: uv sync --python ${{ matrix.python-version }} --group dev
- run: uv run --python ${{ matrix.python-version }} pytest