aboutsummaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
blob: d7149ec25c71a3fe8b253f89a8e91bce781c9a00 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
default:
  image: rust:latest

test:
  script:
    - cargo test --no-fail-fast
    - cargo test --no-fail-fast --no-default-features
    - rustup component add clippy
    - cargo clippy
    - cargo clippy --no-default-features
    - rustup component add rustfmt
    - cargo fmt -- --check