Skip to content

docs: clarify .env scope for env separation (#39) #168

docs: clarify .env scope for env separation (#39)

docs: clarify .env scope for env separation (#39) #168

Workflow file for this run

name: Code Quality Checks
on:
push:
branches: [main]
pull_request:
branches: [main]
workflow_dispatch:
jobs:
quality:
name: Format, Lint, and Type Check
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install uv
uses: astral-sh/setup-uv@v5
with:
enable-cache: true
cache-dependency-glob: "**/pyproject.toml"
- name: Install dependencies
run: make setup
- name: Run quality checks
run: make ci-quality-github