summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdrian D. Thurston <thurston@colm.net>2019-12-17 15:40:32 +0200
committerGitHub <noreply@github.com>2019-12-17 15:40:32 +0200
commit130f1c140ada99d00d03b3a062a6e76ae3b3eb2b (patch)
tree8a420d559fa1b745c5c573026d2690d5032010b4
parentd34610d0c5c0b320a6e485c650a278db40d0071e (diff)
downloadcolm-130f1c140ada99d00d03b3a062a6e76ae3b3eb2b.tar.gz
added build-testing github workflow
-rw-r--r--.github/workflows/build-test.yml17
1 files changed, 17 insertions, 0 deletions
diff --git a/.github/workflows/build-test.yml b/.github/workflows/build-test.yml
new file mode 100644
index 00000000..36011538
--- /dev/null
+++ b/.github/workflows/build-test.yml
@@ -0,0 +1,17 @@
+name: C/C++ CI
+
+on: [push]
+
+jobs:
+ build:
+
+ runs-on: ubuntu-latest
+
+ steps:
+ - uses: actions/checkout@v1
+ - name: configure
+ run: ./configure
+ - name: make
+ run: make
+ - name: test
+ run: cd test && ./runtests