Skip to content

chore: remove autowsgr_legacy (preserved in legacy branch) #4

chore: remove autowsgr_legacy (preserved in legacy branch)

chore: remove autowsgr_legacy (preserved in legacy branch) #4

Workflow file for this run

# Pre-commit 代码检查 — push / PR 时自动运行
name: Lint
on:
push:
branches: [main]
pull_request:
branches: [main]
permissions:
contents: read
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-python@v6
with:
python-version: '3.14'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pre-commit
- name: Run pre-commit checks
run: pre-commit run --all-files