Files
vscode-workbench/.gitea/workflows/planning-ci.yml
T

28 lines
691 B
YAML
Raw Blame History

This file contains ambiguous Unicode characters
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: vscode-planning-ci
# I-02 · 本仓 CI(Gitea Actions / GitHub Actions 兼容:纯 push/pull_request 触发,无私有凭据)。
on:
push:
pull_request:
jobs:
planning-smoke:
runs-on: ubuntu-latest
defaults:
run:
working-directory: PLANNING
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: 调度器只读命令
run: |
python tasks.py list
python tasks.py status
python tasks.py collect
- name: CI 烟雾测试
run: |
pip install pytest -q
python -m pytest tools/test_ci_smoke.py -q