gcontini
2020-10-10 fc059acc0101b45b91be98256289c4060df8e30e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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