summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMurray Cumming <murrayc@murrayc.com>2019-09-27 14:34:20 +0200
committerMurray Cumming <murrayc@murrayc.com>2019-09-27 14:58:38 +0200
commitffe6534c7261b0d428ba47b063658cfe93596893 (patch)
treea3f634bf93f3baa94d83e3b34642bbf2fe724d48
parent0136f43a7ad513e533853403ea169988e9c7e434 (diff)
downloadsigc++-ffe6534c7261b0d428ba47b063658cfe93596893.tar.gz
Add GitHub Actions build workflow (autotools build)
-rw-r--r--.github/workflows/autotools.yml19
1 files changed, 19 insertions, 0 deletions
diff --git a/.github/workflows/autotools.yml b/.github/workflows/autotools.yml
new file mode 100644
index 0000000..2e38ce3
--- /dev/null
+++ b/.github/workflows/autotools.yml
@@ -0,0 +1,19 @@
+name: CI
+
+on: [push]
+
+jobs:
+ build:
+
+ runs-on: ubuntu-latest
+
+ steps:
+ - uses: actions/checkout@v1
+ - name: Build
+ run: |
+ sudo apt install mm-common
+ ./autogen.sh; ./configure; make
+ - name: Test
+ run: make check
+ - name: Distcheck
+ run: make distcheck