rust-action/.github/main.workflow

10 lines
237 B
Plaintext
Raw Normal View History

workflow "Integration tests" {
on = "push"
resolves = ["Quickstart"]
}
action "Quickstart" {
uses = "icepuma/rust-action@master"
args = "cd integration-test && cargo fmt -- --check && cargo clippy -- -Dwarnings && cargo test"
}