Files
pyflowx/.github/workflows/ci.yml
T
zhou d3c2d53449
CI / Lint, Typecheck & Test (push) Has been cancelled
build: 升级pyflowx版本到0.3.0
更新项目版本号从0.2.13至0.3.0
2026-07-03 07:39:30 +08:00

33 lines
686 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: http://gitea:3000/zhou/checkout.git@main
- uses: http://gitea:3000/zhou/setup-uv.git@v8.1.0
with:
uv-version: "0.8.0"
enable-cache: true
- uses: http://gitea:3000/zhou/setup-python.git@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