Skip to content

chore: remove all caching in ci #41

chore: remove all caching in ci

chore: remove all caching in ci #41

Workflow file for this run

name: AoC Python CI
on:
push:
branches: [ main ]
jobs:
quality:
name: Code Quality
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v5
- name: Install the project
run: uv sync --all-extras --dev
- name: Check formatting
run: uv run ruff format --check .
- name: Run linting
run: uv run ruff check .
- name: Run type checking
run: uv run mypy --exclude '(.venv|.pdm-build|__pycache__|.ruff_cache|.mypy_cache|.pytest_cache)' .
test:
name: Tests
needs: quality
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v5
- name: Install the project
run: uv sync --all-extras --dev
- name: Run tests
run: uv run pytest */tests/