rust-action/README.md
2019-11-08 22:33:45 +01:00

26 lines
487 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.39.0
* Rustfmt
* Clippy
* Cargo Release
* cmake - Thanks @ [bwasty](https://github.com/bwasty)
# Usage
```
workflow "Quickstart" {
on = "push"
resolves = ["Quickstart"]
}
action "Quickstart" {
uses = "icepuma/rust-action@master"
args = "cargo fmt -- --check && cargo clippy -- -Dwarnings && cargo test"
}
```