Files
pyflowx/.github/workflows/ci.yml
T
zhou 4b66176ce6
CI / Lint, Typecheck & Test (push) Has been cancelled
~ci.yml
2026-07-02 18:29:03 +08:00

32 lines
607 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: actions/checkout@latest
- uses: astral-sh/setup-uv@latest
with:
enable-cache: true
- uses: actions/setup-python@latest
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