From eb749afe4c800259e5c1133811f4a94f4ffe60cb Mon Sep 17 00:00:00 2001 From: Jonathan Clem Date: Tue, 18 Dec 2018 09:20:22 -0500 Subject: [PATCH] Add .github/main.workflow --- .github/main.workflow | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/main.workflow diff --git a/.github/main.workflow b/.github/main.workflow new file mode 100644 index 0000000..7eea4c9 --- /dev/null +++ b/.github/main.workflow @@ -0,0 +1,15 @@ +workflow "Run tests" { + on = "push" + resolves = ["mix test"] +} + +action "mix deps.get" { + uses = "jclem/actions/mix@master" + args = "deps.get" +} + +action "mix test" { + uses = "jclem/actions/mix@master" + needs = ["mix deps.get"] + args = "test --trace" +}