From ebbad985dba6b81c00678c4c6d262f0db06fa406 Mon Sep 17 00:00:00 2001 From: Jacob McCann Date: Tue, 29 Jan 2019 15:24:04 -0600 Subject: [PATCH] Update main.workflow --- .github/main.workflow | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 .github/main.workflow diff --git a/.github/main.workflow b/.github/main.workflow new file mode 100644 index 0000000..e7d31ee --- /dev/null +++ b/.github/main.workflow @@ -0,0 +1,9 @@ +workflow "New workflow" { + on = "push" + resolves = ["lint"] +} + +action "lint" { + uses = "docker://golang:1.10" + runs = "go fmt" +}