Files
pyflowx/.github/workflows/ci.yml
T
2026-07-02 19:59:01 +08:00

32 lines
665 B
YAML

name: CI
on:
push:
branches: [ main, develop ]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
ci:
name: Lint, Typecheck & Test
runs-on: ubuntu-latest
steps:
- uses: https://git.gookeryoung.cn/zhou/checkout@v7
- uses: https://git.gookeryoung.cn/zhou/setup-uv@v5
with:
enable-cache: true
- uses: https://git.gookeryoung.cn/zhou/setup-python@v6
with:
python-version: |
3.8
3.13
- run: uv sync
- run: uv run ruff check src tests
- run: uv run pyrefly check .
- run: uvx tox run -e py38,py313