威勝 張 ff4a04285d
Some checks failed
test_CICD / build (push) Failing after 2s
11
2025-02-22 21:42:53 +08:00

28 lines
518 B
YAML

name: test_CICD # 工作流的名称
# 当有代码推送到仓库的 main 分支时,这个 Actions 工作流会被触发并执行
on:
push:
branches:
- main
- develop
jobs:
build:
runs-on: test
steps:
- name: Set PowerShell Execution Policy
shell: pwsh
run: Set-ExecutionPolicy Bypass -Scope Process -Force
- name: Run CMake build and install
shell: pwsh
run: |
echo "test_start"
sleep 20
echo "test_end"