Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/actions-rs/meta
🦀 GitHub Actions for Rust - recipes, discussions, questions and ideas
https://github.com/actions-rs/meta
Last synced: 13 days ago
JSON representation
🦀 GitHub Actions for Rust - recipes, discussions, questions and ideas
- Host: GitHub
- URL: https://github.com/actions-rs/meta
- Owner: actions-rs
- License: cc0-1.0
- Archived: true
- Created: 2019-09-12T16:00:28.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2022-07-28T05:43:48.000Z (over 2 years ago)
- Last Synced: 2024-08-01T22:54:24.402Z (3 months ago)
- Homepage: https://github.com/actions-rs
- Size: 26.4 KB
- Stars: 353
- Watchers: 13
- Forks: 15
- Open Issues: 28
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# GitHub Actions for Rust language
![CC0 licensed](https://img.shields.io/github/license/actions-rs/meta)
[![Gitter](https://badges.gitter.im/actions-rs/community.svg)](https://gitter.im/actions-rs/community)Repositories in [this organization](https://github.com/actions-rs) are [GitHub Actions](https://github.com/features/actions), which can be used to do the full CI circle for Rust projects.
## Recipes
See the [@actions-rs/example](https://github.com/actions-rs/example) repository
with the live workflows described here.### Quickstart ⚡
[Quickstart](./recipes/quickstart.md) recipe can be useful
if you are not familiar with GitHub Actions, never used CI thingies before
or just want to copy-n-paste some scripts into your project for an instant result.### MSRV (Minimal Supported Rust Version) 🔒
[MSRV](./recipes/msrv.md) recipe does almost the same what "[Quickstart](#quickstart)" do,
but also helps to guarantee the MSRV policy if you have any.### Nightly clippy and rustfmt 📎
Ever had this problem when your CI build is broken,
because today's `nightly` is missing `clippy` or `rustfmt`?\
Yeah, I know, everyone hates that.[Nightly lints](./recipes/nightly-lints.md) recipe is utilizing `rustup` ability
to find the most recent `nightly` toolchain with the components requested;
no more broken builds for you!### Stable + beta + nightly + MSRV
[Matrix](./recipes/matrix.md) recipe combines three previous recipes together
in order to make an ultimate quickstart workflow.### Perform security audit for your dependencies 🛡️
[Security Audit](./recipes/security-audit.md) recipe is using [RustSec](https://rustsec.org/)
advisories database to audit crate for security vulnerabilities.## License
All recipes in this repository are published with the [CC0](./LICENSE) license.