From 7c23f3e00f4acc8fd693136a19f7c518da58e29a Mon Sep 17 00:00:00 2001 From: Gabriele Contini <contini.mailing@gmail.com> Date: 周日, 17 5月 2020 10:57:36 +0800 Subject: [PATCH] enable github actions --- .github/workflows/cpp.yml | 18 ++++++++++++++++++ 1 files changed, 18 insertions(+), 0 deletions(-) diff --git a/.github/workflows/cpp.yml b/.github/workflows/cpp.yml new file mode 100644 index 0000000..cf8dba2 --- /dev/null +++ b/.github/workflows/cpp.yml @@ -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 \ No newline at end of file -- Gitblit v1.9.1