Skip to content

chore(deps): bump the python-dependencies group across 1 directory with 12 updates #219

chore(deps): bump the python-dependencies group across 1 directory with 12 updates

chore(deps): bump the python-dependencies group across 1 directory with 12 updates #219

Workflow file for this run

name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
lint-and-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7
- name: Install uv
uses: astral-sh/setup-uv@v7
with:
version: "latest"
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: "3.13"
- name: Install dependencies
run: make install
- name: Run linting
run: make lint
- name: Run tests with coverage
run: make coverage
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v7
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}