Test: 将测试源文件移动到 test/src 目录下,并使用 UTF-8 编码 #256
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: 测试构建项目 | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
TESTING: | |
runs-on: windows-2019 | |
steps: | |
- name: 获取源码 | |
uses: actions/Checkout@v2 | |
- name: 尝试构建 MSVC 2019 X64 Release | |
run: | | |
mkdir build | |
cd build | |
cmake .. -G "Visual Studio 16 2019" -A x64 | |
cmake --build . -j | |