Skip to content

Commit

Permalink
Merge branch 'master' of github.com:LucioFranco/tower-consul
Browse files Browse the repository at this point in the history
  • Loading branch information
LucioFranco committed Feb 2, 2019
2 parents cac5779 + 420f491 commit 7db6550
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/main.workflow
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
workflow "Build tower-consul project" {
on = "push"
resolves = ["Build"]
}

action "Format" {
uses = "icepuma/rust-github-actions/fmt@master"
args = "-- --check"
}

action "Clippy" {
uses = "icepuma/rust-github-actions/clippy@master"
args = "-- -Dwarnings"
needs = "Format"
}

action "Build" {
uses = "icepuma/rust-github-actions/build@master"
needs = "Clippy"
}

0 comments on commit 7db6550

Please sign in to comment.