Skip to content

chore(ty): add all missing rules at error level #157

chore(ty): add all missing rules at error level

chore(ty): add all missing rules at error level #157

Workflow file for this run

name: Ty Lint
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
permissions:
contents: read
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Set up Python 3.14
uses: actions/setup-python@v6
with:
python-version: "3.14" # From pyproject.toml
- name: Cache UV
uses: actions/cache@v5
with:
path: ~/.cache/uv
key: ${{ runner.os }}-uv-${{ hashFiles('**/pyproject.toml', '**/uv.lock') }}
- name: Install UV
uses: astral-sh/setup-uv@v7
- name: Install dependencies
run: uv sync --all-extras --all-groups # Follows pyproject.toml exactly
- name: Run Ty type checking
run: uv run ty check archipy # Config from pyproject.toml