1 2 3 4 5 6 7 8 9
workflow "Quickstart" { on = "push" resolves = ["quickstart"] } action "quickstart" { uses = "icepuma/rust-action@1.0.4" args = "cargo fmt -- --check && cargo clippy -- -Dwarnings && cargo test && cargo bench" }