Files
rust/.gitea/workflows/ci.yaml
yinxue 3169f32e4f
Some checks failed
Rust CI Pipeline / test-and-build (push) Has been cancelled
减少工作流操作
2025-10-21 19:51:14 +08:00

46 lines
1.1 KiB
YAML
Raw Blame History

This file contains invisible Unicode characters
This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
name: Rust CI Pipeline
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test-and-build:
runs-on: ubuntu-latest
steps:
# 1. 检出代码 - 使用 Gitea 本地的 actions 镜像
- name: 🔍 Check out repository code
uses: https://devstar.cn/actions/checkout@v4
# 2. 安装 Rust 工具链
- name: 🦀 Set up Rust
run: |
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
echo "$HOME/.cargo/bin" >> $GITHUB_PATH
# 3. 显示环境信息
- name: Environment Info
run: |
rustc --version
cargo --version
echo "Building repository: ${{ gitea.repository }}"
# 4. 构建项目(调试模式)
- name: 🔧 Build (Debug)
run: cargo build --verbose
# 5. 构建项目(发布模式)
- name: 🚀 Build (Release)
run: cargo build --release --verbose
# 6. 运行测试
- name: ✅ Run Tests
run: cargo test --verbose
# 7. 清理构建缓存
- name: 🧹 Cleanup
run: cargo clean