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" +}