aboutsummaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorGertjan van den Burg <gertjanvandenburg@gmail.com>2020-12-16 00:03:27 +0000
committerGertjan van den Burg <gertjanvandenburg@gmail.com>2020-12-16 00:03:27 +0000
commitbe9dbb1a1030423dd2a4773828ba28cbe7f17424 (patch)
treed7ebc469282866d93e99634ddde28794197b57c6 /.github
parentRemove experimental pip feature (diff)
downloadTCPD-be9dbb1a1030423dd2a4773828ba28cbe7f17424.tar.gz
TCPD-be9dbb1a1030423dd2a4773828ba28cbe7f17424.zip
First attempt at github actions script for CI
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/validate.yml22
1 files changed, 22 insertions, 0 deletions
diff --git a/.github/workflows/validate.yml b/.github/workflows/validate.yml
new file mode 100644
index 0000000..fba1b63
--- /dev/null
+++ b/.github/workflows/validate.yml
@@ -0,0 +1,22 @@
+name: Validate TCPD
+
+on: push
+
+jobs:
+ tcpd-ubuntu:
+ name: check TCPD
+ runs-on: ubuntu-latest
+
+ steps:
+ - name: Install dependencies
+ run: sudo apt-get update && sudo apt-get install build-essential
+
+ - name: Checkout code
+ uses: actions/checkout@v2
+
+ - name: Ensure clean
+ run: make clean
+
+ - name: Build and verify
+ run: make test
+