aboutsummaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
blob: 067a689f2c1b81a46402f315b74c8d9290a931c1 (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
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