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.

37 lines
626 B

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