gemm/.drone.yml
Andrey Tkachenko 282d0c4716
All checks were successful
continuous-integration/drone/pr Build is passing
continuous-integration/drone/push Build is passing
Fix fmt and some warnings
2022-03-05 18:48:19 +04:00

15 lines
225 B
YAML

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