rust-action/README.md
Stefan Ruzitschka 2d47be2af4
[fix] doc
2019-01-28 11:22:29 +01:00

25 lines
432 B
Markdown

# Rust Github Action
'Silverbullet' for a quickstart Rust CI based upon [Github Actions](https://developer.github.com/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-action@master"
args = "cargo fmt -- --check && cargo clippy -- -Dwarnings && cargo test"
}
```