rust-action/README.md

26 lines
487 B
Markdown
Raw Normal View History

2019-01-25 22:47:25 +00:00
# Rust Github Action
'Silverbullet' for a quickstart Rust CI based upon [Github Actions](https://developer.github.com/actions/)
2019-01-25 23:56:40 +00:00
*What's inside the "box":*
2019-01-25 22:47:25 +00:00
2019-05-24 05:19:32 +00:00
* Rust 1.35.0
2019-01-25 22:47:25 +00:00
* Rustfmt
* Clippy
* Cargo Release
2019-05-13 17:41:03 +00:00
* cmake - Thanks @ [bwasty](https://github.com/bwasty)
2019-01-25 22:47:25 +00:00
# Usage
```
workflow "Quickstart" {
on = "push"
resolves = ["Quickstart"]
}
action "Quickstart" {
2019-01-28 10:22:29 +00:00
uses = "icepuma/rust-action@master"
args = "cargo fmt -- --check && cargo clippy -- -Dwarnings && cargo test"
2019-01-25 22:47:25 +00:00
}
```