File: .gitlab-ci.yml

package info (click to toggle)
rust-microformats 0.15.0-1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 2,068 kB
  • sloc: javascript: 71; makefile: 26; sh: 1
file content (11 lines) | stat: -rw-r--r-- 196 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
stages:
  - test

unit-test-job:
  stage: test
  image: rust:1.71.1
  script:
    - rustup component add clippy
    - cargo build --verbose
    - cargo clippy --verbose
    - cargo test --verbose