Files
pyflowx/.github/workflows/ci.yml
T
zhou 8de565d0cb
CI / Lint, Typecheck & Test (push) Failing after 26s
ci(ci.yml): 将CI镜像标签从1.0.0改为latest
使用latest标签可以自动获取最新的CI镜像版本,无需手动更新版本号
2026-07-03 13:31:40 +08:00

33 lines
625 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
container:
image: pyflowx-ci:1.0.0
env:
UV_LINK_MODE: copy
steps:
- uses: http://gitea:3000/zhou/checkout.git@main
- name: Sync dependencies
run: uv sync --frozen
- name: Ruff check
run: ruff check src tests
- name: Pyrefly check
run: pyrefly check .
- name: Tox test (py38, py313)
run: uvx tox run -e py38,py313