Skip to content

test:for windows

test:for windows #67

Workflow file for this run

name: commit_test
on:
push: #设置触发规则
branches:
- main
- master
jobs:
build:
strategy:
matrix: # 会分开成两个任务分别执行
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout code #这部分是为了从github自动clone代码
uses: actions/checkout@v4
with:
submodules: true
- name: Run test #需要执行的命令
run: |
cd src
./build.sh
./bin/test_bin