This repository has been archived on 2024-06-24. You can view files and clone it, but cannot push or open issues or pull requests.
huia/.gitlab-ci.yml

35 lines
520 B
YAML
Raw Normal View History

2018-08-26 21:48:48 +12:00
cargo-test:
image: rust:latest
variables:
CARGO_HOME: "$CI_PROJECT_DIR/cache/"
cache:
paths:
- "cache"
before_script:
- rustc -V
script:
- cargo test
2018-09-06 14:08:08 +12:00
2019-03-06 16:38:30 +13:00
cargo-lint:
image: rust:latest
variables:
CARGO_HOME: "$CI_PROJECT_DIR/cache/"
cache:
paths:
- "cache"
before_script:
- rustc -V
- rustup component add clippy
script:
- cargo clippy
2018-09-06 14:08:08 +12:00
pages:
image: alpine:latest
script:
- echo "noop"
artifacts:
paths:
- public
only:
- master