From f0450da5881146df9194355873326d91f8037e24 Mon Sep 17 00:00:00 2001
From: gcontini <1121667+gcontini@users.noreply.github.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