aboutsummaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
blob: bd9dff9a2db49c1b8d90e13d63c3ff88edd10290 (plain)
1
2
3
4
5
6
7
8
9
10
11
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
    - rustup component add rustfmt
    - cargo fmt -- --check