Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/icepuma/rust-action
Rust github action
https://github.com/icepuma/rust-action
Last synced: 15 days ago
JSON representation
Rust github action
- Host: GitHub
- URL: https://github.com/icepuma/rust-action
- Owner: icepuma
- License: wtfpl
- Created: 2019-01-25T22:46:52.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2024-05-20T16:43:31.000Z (6 months ago)
- Last Synced: 2024-09-19T08:02:05.787Z (about 2 months ago)
- Language: Dockerfile
- Homepage:
- Size: 45.9 KB
- Stars: 78
- Watchers: 4
- Forks: 12
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-rust-cn - icepuma/rust-action
- awesome-rust - icepuma/rust-action
- awesome-rust - icepuma/rust-action
- awesome-rust-cn - icepuma/rust-action - rust github action (开发工具 Development tools / 构建系统 Build system)
- awesome-rust-zh - icepuma/rust-action - 螃蟹 github action (开发工具 / 构建系统)
- awesome-rust - icepuma/rust-action - rust github action (Development tools / Build system)
- awesome-rust - icepuma/rust-action
- fucking-awesome-rust - icepuma/rust-action - rust github action (Development tools / Build system)
- fucking-awesome-rust - icepuma/rust-action - rust github action (Development tools / Build system)
README
# Rust Github Action
:warning: Action is deprecated, please use [rust-action](https://github.com/Mirlahiji/rust-action).
Thanks to [Mirlahiji](https://github.com/Mirlahiji) for taking over the project :heart:'Silverbullet' for a quickstart Rust CI based upon [Github Actions](https://developer.github.com/actions/)
*What's inside the "box":*
* Rust 1.68.0
* Rustfmt
* Clippy
* Cargo Release
* cmake - Thanks @ [bwasty](https://github.com/bwasty)# Usage
In a file inside `.github/workflows/quickstart.yml`
```yaml
name: Rust Exampleon: [push]
jobs:
build:
runs-on: ubuntu-lateststeps:
- uses: actions/checkout@v1
- uses: icepuma/rust-action@master
with:
args: cd integration-test && cargo fmt -- --check && cargo clippy -- -Dwarnings && cargo test
```