威勝 張 5f19a71c69
Some checks are pending
test_CICD / build (push) Waiting to run
05
2025-02-22 20:48:56 +08:00

23 lines
422 B
YAML

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