add github action for CI testing
authorJames Alan Preiss <jamesalanpreiss@gmail.com>
Mon, 1 Jun 2020 21:48:34 +0000 (14:48 -0700)
committerGitHub <noreply@github.com>
Mon, 1 Jun 2020 21:48:34 +0000 (14:48 -0700)
.github/workflows/test.yml [new file with mode: 0644]

diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
new file mode 100644 (file)
index 0000000..43e580d
--- /dev/null
@@ -0,0 +1,13 @@
+name: test
+
+on: [push, pull_request]
+
+jobs:
+  build:
+    runs-on: ubuntu-latest
+    steps:
+    - uses: actions/checkout@v2
+    - name: make
+      run: make
+    - name: test
+      run: make test