aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/validate.yml
diff options
context:
space:
mode:
authorGertjan van den Burg <gertjanvandenburg@gmail.com>2020-12-16 00:42:36 +0000
committerGertjan van den Burg <gertjanvandenburg@gmail.com>2020-12-16 00:42:36 +0000
commitb4800f730b129df9fe439d4b7185570863ae4452 (patch)
tree4cf53de17e59427bd639b84ef390e46f9f456ce3 /.github/workflows/validate.yml
parentfix workflow script (diff)
downloadTCPD-b4800f730b129df9fe439d4b7185570863ae4452.tar.gz
TCPD-b4800f730b129df9fe439d4b7185570863ae4452.zip
Split docker action in separate file
Diffstat (limited to '.github/workflows/validate.yml')
-rw-r--r--.github/workflows/validate.yml34
1 files changed, 0 insertions, 34 deletions
diff --git a/.github/workflows/validate.yml b/.github/workflows/validate.yml
deleted file mode 100644
index d35e682..0000000
--- a/.github/workflows/validate.yml
+++ /dev/null
@@ -1,34 +0,0 @@
-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: Install Python 3.6
- uses: actions/setup-python@v2
- with:
- python-version: '3.6'
-
- - name: Checkout code
- uses: actions/checkout@v2
-
- - name: Ensure clean
- run: make clean
- shell: bash
-
- - name: Build and verify
- run: make test
- shell: bash
-
- tcpd-docker:
- runs:
- using: 'docker'
- image: 'Dockerfile'