89 lines
2.6 KiB
YAML
89 lines
2.6 KiB
YAML
name: 🧪 Playbook 测试套件
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
workflow_dispatch: # 允许手动触发
|
|
|
|
concurrency:
|
|
group: test-${{ github.repository }}-${{ github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
# ==========================================
|
|
# 🔧 配置区域 - 测试参数
|
|
# ==========================================
|
|
env:
|
|
# 测试工作目录
|
|
WORKSPACE_DIR: "/home/workspace"
|
|
|
|
jobs:
|
|
# ==========================================
|
|
# Job: 全量测试
|
|
# ==========================================
|
|
test:
|
|
name: 🧪 全量测试
|
|
runs-on: ubuntu-22.04
|
|
|
|
steps:
|
|
- name: 📥 准备仓库
|
|
env:
|
|
REPO_NAME: ${{ github.event.repository.name }}
|
|
TOKEN: ${{ secrets.WORKFLOW }}
|
|
TARGET_SHA: ${{ github.sha }}
|
|
TARGET_REF: ${{ github.ref }}
|
|
TARGET_REF_NAME: ${{ github.ref_name }}
|
|
run: bash .gitea/ci/prepare_repo.sh
|
|
|
|
- name: 🔧 安装测试依赖
|
|
run: |
|
|
echo "========================================"
|
|
echo "🔧 安装测试依赖"
|
|
echo "========================================"
|
|
|
|
apt-get update
|
|
apt-get install -y python3-pip
|
|
|
|
python3 -m pip install --upgrade pip
|
|
python3 -m pip install yamllint
|
|
|
|
echo ""
|
|
echo "✓ Python 版本: $(python3 --version)"
|
|
echo "========================================"
|
|
|
|
- name: 🧪 运行全量测试并生成报告
|
|
shell: bash
|
|
run: |
|
|
set -euo pipefail
|
|
|
|
echo "========================================"
|
|
echo "🧪 Python CLI 测试"
|
|
echo "========================================"
|
|
|
|
cd "$REPO_DIR"
|
|
python3 -m unittest discover -s tests/cli -v
|
|
|
|
echo "========================================"
|
|
echo "🧪 Python 扩展测试"
|
|
echo "========================================"
|
|
|
|
python3 -m unittest discover -s tests -p "test_*.py" -v
|
|
|
|
echo "========================================"
|
|
echo "📄 模板验证测试"
|
|
echo "========================================"
|
|
|
|
sh tests/templates/validate_python_templates.sh
|
|
sh tests/templates/validate_cpp_templates.sh
|
|
sh tests/templates/validate_ci_templates.sh
|
|
sh tests/templates/validate_project_templates.sh
|
|
|
|
echo "========================================"
|
|
echo "🔗 文档链接检查"
|
|
echo "========================================"
|
|
|
|
sh tests/integration/check_doc_links.sh
|