Skip to content

chore(deps-dev): bump ty from 0.0.11 to 0.0.15 #169

chore(deps-dev): bump ty from 0.0.11 to 0.0.15

chore(deps-dev): bump ty from 0.0.11 to 0.0.15 #169

Workflow file for this run

name: checks
on:
pull_request:
workflow_dispatch:
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: ./.github/actions/setup-python
- run: |
uv run ruff check --fix
uv run ruff format
typecheck:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: ./.github/actions/setup-python
- run: uv run ty check
vulture:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: ./.github/actions/setup-python
- run: uv run vulture --min-confidence 100 --exclude ".venv" .