mirror of
https://github.com/googleworkspace/cli.git
synced 2026-09-14 16:47:13 +08:00
20 lines
315 B
YAML
20 lines
315 B
YAML
pre-commit:
|
|
parallel: true
|
|
commands:
|
|
fmt:
|
|
glob: "*.rs"
|
|
run: cargo fmt -- --check
|
|
clippy:
|
|
glob: "*.rs"
|
|
run: cargo clippy -- -D warnings
|
|
|
|
pre-push:
|
|
parallel: true
|
|
commands:
|
|
test:
|
|
glob: "*.rs"
|
|
run: cargo test
|
|
check:
|
|
glob: "*.rs"
|
|
run: cargo check
|