aboutsummaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2019-09-14 20:25:43 +0200
committerGitHub <noreply@github.com>2019-09-14 20:25:43 +0200
commitdf26f5f9c36e19cd503c0e462e9f72ad37b84c82 (patch)
treece81cb429e0d571122f49aff62695fdd785c87d7 /.github
parent5977664d2f0cbe02796b55695ef61c494bc80451 (diff)
CI: inintial github action job
First shot at a CI build on github actions
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/cpp.yml17
1 files changed, 17 insertions, 0 deletions
diff --git a/.github/workflows/cpp.yml b/.github/workflows/cpp.yml
new file mode 100644
index 000000000..9f3b87eb5
--- /dev/null
+++ b/.github/workflows/cpp.yml
@@ -0,0 +1,17 @@
+name: Build on Ubuntu with default options
+
+on: [push]
+
+jobs:
+ build:
+
+ runs-on: ubuntu-latest
+
+ steps:
+ - uses: actions/checkout@v1
+ - name: configure
+ run: ./buildconf && ./configure
+ - name: make
+ run: make
+ - name: make check
+ run: make check