gcontini
2020-05-17 f0450da5881146df9194355873326d91f8037e24
enable github actions
1个文件已添加
18 ■■■■■ 已修改文件
.github/workflows/cpp.yml 18 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
.github/workflows/cpp.yml
New file
@@ -0,0 +1,18 @@
name: CI
on:
  push:
jobs:
  build-windows:
    runs-on: windows-2019
    steps:
    - uses: actions/checkout@v1
    - name: Compile & Test
      run: |
        mkdir -p build
        cd build
        cmake -G "Visual Studio 16 2019" -DBUILD_TESTING:BOOL=OFF -DLCC_PROJECT_NAME:STRING=geode ..
        cmake --build . --config Debug
      shell: bash