aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/validate.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/validate.yml')
-rw-r--r--.github/workflows/validate.yml25
1 files changed, 25 insertions, 0 deletions
diff --git a/.github/workflows/validate.yml b/.github/workflows/validate.yml
new file mode 100644
index 0000000..d18a3c6
--- /dev/null
+++ b/.github/workflows/validate.yml
@@ -0,0 +1,25 @@
+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
+ shell: bash
+
+ - name: Checkout code
+ uses: actions/checkout@v2
+
+ - name: Ensure clean
+ run: make clean
+ shell: bash
+
+ - name: Build and verify
+ run: make test
+ shell: bash
+