You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficcontrol.apache.org by oc...@apache.org on 2019/08/02 17:11:45 UTC

[trafficcontrol] branch dev-actions updated: Added experimental test workflow

This is an automated email from the ASF dual-hosted git repository.

ocket8888 pushed a commit to branch dev-actions
in repository https://gitbox.apache.org/repos/asf/trafficcontrol.git


The following commit(s) were added to refs/heads/dev-actions by this push:
     new fa51b09  Added experimental test workflow
fa51b09 is described below

commit fa51b09c415e924c93048f0ec713b3d9f42096b9
Author: ocket8888 <oc...@gmail.com>
AuthorDate: Fri Aug 2 11:11:41 2019 -0600

    Added experimental test workflow
---
 .github/main.workflow | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/.github/main.workflow b/.github/main.workflow
new file mode 100644
index 0000000..785e9b1
--- /dev/null
+++ b/.github/main.workflow
@@ -0,0 +1,8 @@
+workflow "Daily Tests" {
+  resolves = ["Go Test"]
+  on = "schedule(0 0 * * *)"
+}
+
+action "Go Test" {
+  uses = "./traffic_ops/app/bin/tests/Dockerfile-golangtest"
+}