--- kind: pipeline name: default workspace: base: /drone/diplonat steps: - name: code style image: rust:1.47 commands: - rustup component add rustfmt - cargo fmt --all -- --check # - name: code quality # image: rust:1.47 # commands: # - cargo clippy -- --deny warnings # - name: test # image: rust:1.47 # commands: # - cargo build --verbose --all # - cargo test --verbose --all