aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/cpp.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/cpp.yml')
-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