summaryrefslogtreecommitdiffstats
path: root/.github/workflows
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/build.yml18
1 files changed, 18 insertions, 0 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
new file mode 100644
index 0000000..2ef481f
--- /dev/null
+++ b/.github/workflows/build.yml
@@ -0,0 +1,18 @@
1name: build
2
3on: [push]
4
5jobs:
6 build:
7 runs-on: [ubuntu-latest, macos-latest]
8 steps:
9 - uses: actions/checkout@v1
10 - name: autogen
11 run: ./autogen.sh
12 - name: make
13 run: make
14 - name: make check
15 run: make check
16 - name: make distcheck
17 run: make distcheck
18