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.

34 lines
581 B

  1. language: rust
  2. rust:
  3. - "1.40.0"
  4. - "1.41.1"
  5. - "1.42.0"
  6. - "1.43.1"
  7. - "1.44.1"
  8. - "1.45.2"
  9. - "1.46.0"
  10. - "1.47.0"
  11. - "stable"
  12. - "beta"
  13. - "nightly"
  14. jobs:
  15. allow_failures:
  16. - rust: "nightly"
  17. include:
  18. - name: Run cargo audit
  19. rust: stable
  20. env: TASK=audit
  21. fast_finish: true
  22. install:
  23. - cargo build --verbose
  24. - if [ "$TASK" = "audit" ]; then cargo install cargo-audit; fi
  25. script:
  26. - if [ "$TASK" = "audit" ]; then
  27. cargo audit;
  28. else
  29. cargo test --verbose;
  30. fi