aboutsummaryrefslogblamecommitdiff
path: root/.drone.yml
blob: 34200b77d3a546723f87eb64cbcffabfc9471dfb (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11










                       
                                











                                     
---
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