summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.github/workflows/ccpp.yml20
1 files changed, 20 insertions, 0 deletions
diff --git a/.github/workflows/ccpp.yml b/.github/workflows/ccpp.yml
new file mode 100644
index 00000000..af59213e
--- /dev/null
+++ b/.github/workflows/ccpp.yml
@@ -0,0 +1,20 @@
+name: Smoke test
+
+on: [push]
+
+jobs:
+ build:
+
+ runs-on: ubuntu-latest
+
+ steps:
+ - uses: actions/checkout@v1
+ - name: configure
+ run: |
+ mkdir build && cd build && cmake ..
+ - name: build
+ run: |
+ make -j4
+ - name: test
+ run: |
+ ctest -V