Skip to content
Snippets Groups Projects
.gitlab-ci.yml 340 B
Newer Older
Stephen D's avatar
Stephen D committed
image: "rust:latest"

before_script:
  - rustup component add rustfmt
  - rustup component add clippy
  - cargo install cargo-deb

test:
  script:
    - cargo fmt -- --check
    - cargo clippy --all-targets --all-features -- -D warnings
    - cargo test

build:
  script:
    - cargo deb
  artifacts:
    paths:
      - target/debian/*.deb