image: 'rust:latest' stages: - test variables: CARGO_INCREMENTAL: 0 test: stage: test script: - apt update && apt install libjq1 libjq-dev libonig-dev libonig5 - JQ_LIB_DIR=/usr/lib/x86_64-linux-gnu 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