rust-action/README.md
Stefan Ruzitschka c445ac21fd
[bump] rust
2019-04-26 15:47:55 +02:00

432 B

Rust Github Action

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

What's inside the "box":

  • Rust 1.34.1
  • Rustfmt
  • Clippy
  • Cargo Release

Usage

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

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