d1f7db2ab7
GHA 默认只检出 huike-back,导致 ../AuthCore 不存在。将本仓库检出到 huike-back/、AuthCore 检出到同级目录,并在子目录运行 cargo check;rust-cache 指向 huike-back workspace。 根 Cargo.toml 保留 ../AuthCore patch,避免把 AuthCore 嵌进本 workspace(否则会继承 huike-back 的 workspace.dependencies 而缺依赖)。 Made-with: Cursor
44 lines
1.1 KiB
YAML
44 lines
1.1 KiB
YAML
name: Rust Backend CI
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
- main
|
|
pull_request:
|
|
|
|
jobs:
|
|
check:
|
|
runs-on: ubuntu-latest
|
|
timeout-minutes: 30
|
|
|
|
steps:
|
|
# Two sibling directories: `huike-back/` (this repo) and `AuthCore/` — matches root `Cargo.toml` [patch] paths `../AuthCore/...`.
|
|
- name: Checkout huike-back
|
|
uses: actions/checkout@v4
|
|
with:
|
|
path: huike-back
|
|
|
|
- name: Checkout AuthCore (Cargo path patch)
|
|
uses: actions/checkout@v4
|
|
with:
|
|
repository: alchemy-studio/AuthCore
|
|
path: AuthCore
|
|
|
|
- name: Install system dependencies
|
|
run: |
|
|
sudo apt-get update
|
|
sudo apt-get install -y libpq-dev pkg-config clang
|
|
|
|
- name: Setup Rust toolchain
|
|
uses: dtolnay/rust-toolchain@stable
|
|
|
|
- name: Cache cargo registry and target
|
|
uses: Swatinem/rust-cache@v2
|
|
with:
|
|
workspaces: huike-back
|
|
|
|
- name: Cargo check workspace
|
|
working-directory: huike-back
|
|
run: cargo check --workspace --all-targets
|