aboutsummaryrefslogtreecommitdiff
path: root/.github
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
parentfix workflow script (diff)
downloadTCPD-b4800f730b129df9fe439d4b7185570863ae4452.tar.gz
TCPD-b4800f730b129df9fe439d4b7185570863ae4452.zip
Split docker action in separate file
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/validate_direct.yml (renamed from .github/workflows/validate.yml)7
-rw-r--r--.github/workflows/validate_docker.yml5
2 files changed, 6 insertions, 6 deletions
diff --git a/.github/workflows/validate.yml b/.github/workflows/validate_direct.yml
index d35e682..cdf25b5 100644
--- a/.github/workflows/validate.yml
+++ b/.github/workflows/validate_direct.yml
@@ -1,4 +1,4 @@
-name: Validate TCPD
+name: Validate TCPD (direct)
on: push
@@ -27,8 +27,3 @@ jobs:
- name: Build and verify
run: make test
shell: bash
-
- tcpd-docker:
- runs:
- using: 'docker'
- image: 'Dockerfile'
diff --git a/.github/workflows/validate_docker.yml b/.github/workflows/validate_docker.yml
new file mode 100644
index 0000000..e645469
--- /dev/null
+++ b/.github/workflows/validate_docker.yml
@@ -0,0 +1,5 @@
+name: Validate TCPD (docker)
+
+runs:
+ using: 'docker'
+ image: 'Dockerfile'