album/.drone.yml

15 lines
225 B
YAML
Raw Permalink Normal View History

2023-07-07 15:36:29 +04:00
kind: pipeline
name: default
steps:
- name: build
image: rust
commands:
- cargo build --verbose --all
- name: fmt-check
image: rust
commands:
- rustup component add rustfmt
- cargo fmt --all -- --check