image: bitsmart/rust:1.32 stages: - lint - build - test lint: stage: lint script: - cargo clippy --features backend_piston,backend_gilrs build: stage: build script: - cargo build --verbose --features backend_piston,backend_gilrs test: stage: test script: - cargo test --features backend_piston,backend_gilrs