aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/darwin.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/darwin.yml')
-rw-r--r--.github/workflows/darwin.yml19
1 files changed, 19 insertions, 0 deletions
diff --git a/.github/workflows/darwin.yml b/.github/workflows/darwin.yml
new file mode 100644
index 00000000..b4ea3d11
--- /dev/null
+++ b/.github/workflows/darwin.yml
@@ -0,0 +1,19 @@
+name: darwin
+on: [push]
+jobs:
+
+ build:
+ name: build
+ runs-on: [ macos-latest ]
+ steps:
+ - name: Check out code
+ uses: actions/checkout@v1
+
+ - name: Configure
+ run: mkdir build && cd build && cmake ..
+
+ - name: build
+ run: cmake --build build
+
+ - name: Test
+ run: cd build && ctest --output-on-failure \ No newline at end of file