Skip to content

Commit

Permalink
Merge pull request #7 from jclem/main.workflow
Browse files Browse the repository at this point in the history
Add workflow for running tests
  • Loading branch information
jclem committed Dec 18, 2018
2 parents 03869aa + dd57c28 commit c0164f7
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"
args = "test --trace"
needs = ["mix deps.get"]
}

0 comments on commit c0164f7

Please sign in to comment.