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.

19 lines
238 B

  1. image: "rust:latest"
  2. default:
  3. before_script:
  4. - rustc --version
  5. - cargo --version
  6. stages:
  7. - test
  8. - build
  9. test-code:
  10. stage: test
  11. script:
  12. - cargo test
  13. build-code:
  14. stage: build
  15. script:
  16. - cargo build --release