威勝 張 cac89d0af0
Some checks failed
test_CICD / build (push) Failing after 7s
08
2025-02-22 20:56:09 +08:00

24 lines
494 B
YAML

name: test_CICD # 工作流的名称
# 当有代码推送到仓库的 main 分支时,这个 Actions 工作流会被触发并执行
on:
push:
branches:
- main
- develop
jobs:
build: # 定义一个名为 build 的作业
runs-on: test # 指定了作业运行的环境
steps:
- name: Run CMake build and install
run: |
Set-ExecutionPolicy -ExecutionPolicy Unrestricted -Scope Process -Force
echo "test_start"
echo "test_end"