mirror of
https://github.com/zhenxun-org/zhenxun_bot.git
synced 2025-12-15 14:22:55 +08:00
23 lines
406 B
YAML
23 lines
406 B
YAML
name: Sequential Lint and Type Check
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- "*"
|
|
pull_request:
|
|
paths:
|
|
- "zhenxun/**"
|
|
- "tests/**"
|
|
- ".github/workflows/ruff.yml"
|
|
- ".github/workflows/pyright.yml"
|
|
- "pyproject.toml"
|
|
- "poetry.lock"
|
|
|
|
jobs:
|
|
ruff-call:
|
|
uses: ./.github/workflows/ruff.yml
|
|
|
|
pyright-call:
|
|
needs: ruff-call
|
|
uses: ./.github/workflows/pyright.yml
|