You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
561 B

3 years ago
3 years ago
3 years ago
  1. ---
  2. kind: pipeline
  3. name: default
  4. steps:
  5. - name: check
  6. image: guangie88/rustfmt-clippy:1.51.0-stable
  7. commands:
  8. - cargo fmt --all -- --check
  9. - cargo check --workspace
  10. - name: lint
  11. image: guangie88/rustfmt-clippy:1.51.0-stable
  12. commands:
  13. - cargo clippy -- -D warnings
  14. - name: test
  15. image: guangie88/rustfmt-clippy:1.51.0-stable
  16. commands:
  17. - cargo test --all
  18. - name: package
  19. image: guangie88/rustfmt-clippy:1.51.0-stable
  20. depends_on: [check, test, lint]
  21. commands:
  22. - cargo build --release --all