Skip to content

Commit

Permalink
Add .github/main.workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
jclem committed Dec 18, 2018
1 parent 33454e1 commit eb749af
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/main.workflow
Original file line number Diff line number Diff line change
@@ -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"
}

0 comments on commit eb749af

Please sign in to comment.