Files
resy/.gitlab-ci.yml
2017-03-30 21:55:00 +02:00

27 lines
448 B
YAML

image: scorpil/rust:stable
stages:
- test
cargo:test:
stage: test
script:
- ci/run-cargo-test.sh
rustfmt:
stage: test
script:
- ci/run-rustfmt.sh
shellcheck:
stage: test
image: ubuntu:yakkety
before_script:
- apt-get update && apt-get install -y shellcheck
- locale-gen en_US.UTF-8
- export LANG=en_US.UTF-8
- export LANGUAGE=en_US:en
- export LC_ALL=en_US.UTF-8
script:
- ci/run-shellcheck.sh