Repositories in this organization are GitHub Actions, which can be used to do the full CI circle for Rust projects.
See the @actions-rs/example repository with the live workflows described here.
Quickstart 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 recipe does almost the same what "Quickstart" do, but also helps to guarantee the MSRV policy if you have any.
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 recipe solves this problem
by falling back to the most recent nightly build with the clippy available.
No more broken builds for you!
All recipes in this repository are published with the CC0 license.