rust-action/README.md
2019-01-26 00:56:40 +01:00

439 B

Rust Github Action

'Silverbullet' for a quickstart Rust CI based upon Github Actions

What's inside the "box":

  • Rust 1.32.0
  • Rustfmt
  • Clippy
  • Cargo Release

Usage

workflow "Quickstart" {
  on = "push"
  resolves = ["Quickstart"]
}

action "Quickstart" {
  uses = "icepuma/rust-github-action@master"
  args = "cargo fmt -- --check && cargo clippy -- -Dwarnings && cargo test"
}