mirror of
https://codeberg.org/Cyborus/forgejo-cli.git
synced 2024-11-10 12:09:33 +01:00
14 lines
220 B
YAML
14 lines
220 B
YAML
|
when:
|
||
|
- event: manual
|
||
|
- event: pull_request
|
||
|
steps:
|
||
|
check:
|
||
|
image: rust
|
||
|
commands:
|
||
|
- cargo check
|
||
|
check-fmt:
|
||
|
image: rust
|
||
|
commands:
|
||
|
- rustup component add rustfmt
|
||
|
- cargo fmt --check
|