summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMurray Cumming <murrayc@murrayc.com>2019-09-27 14:46:33 +0200
committerMurray Cumming <murrayc@murrayc.com>2019-09-27 14:58:38 +0200
commitc283bd545cae0237962d41ee29027369a92fd57d (patch)
tree6fd6575db77e0094adf74308ab03c32d834903bd
parentffe6534c7261b0d428ba47b063658cfe93596893 (diff)
downloadsigc++-c283bd545cae0237962d41ee29027369a92fd57d.tar.gz
Add GitHub Actions build workflow (cmake build)
-rw-r--r--.github/workflows/cmake.yml17
1 files changed, 17 insertions, 0 deletions
diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml
new file mode 100644
index 0000000..d8dba49
--- /dev/null
+++ b/.github/workflows/cmake.yml
@@ -0,0 +1,17 @@
+name: CI
+
+on: [push]
+
+jobs:
+ build:
+
+ runs-on: ubuntu-latest
+
+ steps:
+ - uses: actions/checkout@v1
+ - name: Build
+ run: |
+ cmake .
+ make
+ - name: Test
+ run: make test