summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoe Orton <jorton@redhat.com>2021-06-30 12:59:45 +0100
committerJoe Orton <jorton@apache.org>2021-06-30 13:02:57 +0100
commitd09cd7abf5c2e524eec4f122c181bafed173cb60 (patch)
tree63bf3d077f642227adbf0d0bf5e2801d9095dec4
parent25723524c6fccd7c2587f9096c118b7cf72dadef (diff)
downloadneon-git-d09cd7abf5c2e524eec4f122c181bafed173cb60.tar.gz
Add test github actions workflow.
-rw-r--r--.github/workflows/ci.yml18
1 files changed, 18 insertions, 0 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
new file mode 100644
index 0000000..a16392e
--- /dev/null
+++ b/.github/workflows/ci.yml
@@ -0,0 +1,18 @@
+name: Test workflow
+
+on:
+ push:
+ branches: [ $default-branch ]
+ pull_request:
+ branches: [ $default-branch ]
+
+jobs:
+ build:
+ runs-on: ubuntu-latest
+
+ steps:
+ - uses: actions/checkout@v2
+ - run: ./autogen.sh
+ - run: ./configure
+ - run: make
+ - run: make check