blob: f406606fab82d0a4e042c34d483999edc5134223 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
image: 'rust:latest'
stages:
- test
variables:
CARGO_INCREMENTAL: 0
test:
stage: test
script:
- cargo test --all --verbose
# pretty:
# stage: test
# allow_failure: true
# before_script:
# - rustup component add rustfmt
# script:
# - cargo fmt -- --check
# petty:
# stage: test
# before_script:
# - rustup component add clippy
# script:
# - cargo clippy --all
|