配置: - rustfmt.toml: 固化 max_width=100 / 4 空格缩进,cargo fmt 全量格式化 - Cargo.toml: 配置 [lints.rust] 与 [lints.clippy] 渐进式规则 - .github/workflows/ci.yml: Rust(fmt+clippy+test) + 前端(eslint+tsc+test) 双平台 CI - Makefile: 新增 check/fmt/fix 目标,clippy 对齐 --all-targets --all-features - web: eslint flat config + prettier 配置 + package.json 脚本与依赖 - src/main.rs: loop→while 修复 clippy::never_loop 对抗性审查发现并修复: - eslint 缺 caughtErrorsIgnorePattern 导致 catch(_) 误报为 error - 前端 lint 未接入 CI,现已补上 Lint 步骤 - Makefile 与 CI 的 clippy flags 不一致,已对齐
84 lines
2.1 KiB
YAML
84 lines
2.1 KiB
YAML
name: CI
|
||
|
||
on:
|
||
push:
|
||
branches: [main, master]
|
||
pull_request:
|
||
branches: [main, master]
|
||
|
||
env:
|
||
CARGO_TERM_COLOR: always
|
||
# 跳过前端构建(build.rs 会触发 npm install + npm run build)
|
||
# CI 中独立处理前端检查,避免 cargo check 时重复构建
|
||
SKIP_FRONTEND_BUILD: "1"
|
||
|
||
jobs:
|
||
rust-checks:
|
||
name: Rust fmt + clippy + test
|
||
runs-on: ${{ matrix.os }}
|
||
strategy:
|
||
fail-fast: false
|
||
matrix:
|
||
os: [ubuntu-latest, windows-latest]
|
||
steps:
|
||
- uses: actions/checkout@v4
|
||
|
||
- name: Install Rust toolchain
|
||
uses: dtolnay/rust-toolchain@stable
|
||
with:
|
||
components: rustfmt, clippy
|
||
|
||
- name: Cache cargo registry
|
||
uses: actions/cache@v4
|
||
with:
|
||
path: |
|
||
~/.cargo/registry
|
||
~/.cargo/git
|
||
target
|
||
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
|
||
|
||
- name: Check formatting
|
||
run: cargo fmt --all -- --check
|
||
|
||
# 不使用 -D warnings:现有代码有大量 warn 级别的存量问题
|
||
# (unwrap/expect/clone 等),一上线会让 CI 一直红。
|
||
# 仅 correctness 类别(clippy 默认 deny)会失败,先渐进收集。
|
||
# 等存量清理后再考虑加 -- -D warnings
|
||
- name: Clippy
|
||
run: cargo clippy --all-targets --all-features
|
||
|
||
- name: Build
|
||
run: cargo build --lib
|
||
|
||
- name: Run tests
|
||
run: cargo test --lib
|
||
|
||
frontend-checks:
|
||
name: Frontend build + test
|
||
runs-on: ubuntu-latest
|
||
steps:
|
||
- uses: actions/checkout@v4
|
||
|
||
- name: Setup Node
|
||
uses: actions/setup-node@v4
|
||
with:
|
||
node-version: "20"
|
||
cache: "npm"
|
||
cache-dependency-path: web/package-lock.json
|
||
|
||
- name: Install dependencies
|
||
working-directory: web
|
||
run: npm ci
|
||
|
||
- name: Lint (eslint)
|
||
working-directory: web
|
||
run: npm run lint
|
||
|
||
- name: Type check
|
||
working-directory: web
|
||
run: npx tsc --noEmit
|
||
|
||
- name: Run tests
|
||
working-directory: web
|
||
run: npm run test
|