git-req 2.0.0-rc.3

Check out merge requests from your GitLab/GitHub hosted repos with ease!
workflow "Build workflow" {
  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"
}