TS Lint / ESLint (push) Successful in 43s
Python Lint CI / ruff-format-check (push) Successful in 53s
Python Lint CI / ruff (push) Successful in 59s
Python Lint CI / ty (push) Successful in 59s
TS Lint / Oxlint (push) Successful in 1m57s
TS Lint / TypeScript (push) Successful in 2m17s
47 lines
1.0 KiB
YAML
47 lines
1.0 KiB
YAML
name: Python Lint CI
|
|
|
|
concurrency:
|
|
group: ts-lint-${{ github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
push:
|
|
paths:
|
|
- '.github/workflows/py-lint.yml'
|
|
- 'pyproject.toml'
|
|
- 'uv.lock'
|
|
- '.python-version'
|
|
- '**/*.py'
|
|
|
|
jobs:
|
|
ruff:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v5
|
|
- name: Set up UV
|
|
uses: actions/setup-uv@v1
|
|
- name: Run Ruff check
|
|
run: uv run ruff check --output-format=github
|
|
|
|
ruff-format-check:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v5
|
|
- name: Set up UV
|
|
uses: actions/setup-uv@v1
|
|
- name: Run Ruff format check
|
|
run: uv run ruff format --check --output-format=github
|
|
|
|
ty:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v5
|
|
- name: Set up UV
|
|
uses: actions/setup-uv@v1
|
|
- name: Run ty check
|
|
run: uv run ty check --output-format=github
|