summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoe Orton <jorton@redhat.com>2021-06-30 12:59:45 +0100
committerJoe Orton <jorton@redhat.com>2021-06-30 13:00:39 +0100
commitd701fe87bb952933eb92107bec5e90842e7aa25d (patch)
tree63bf3d077f642227adbf0d0bf5e2801d9095dec4
parent25723524c6fccd7c2587f9096c118b7cf72dadef (diff)
downloadneon-git-actions.tar.gz
Add test github actions workflow.actions
-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