Merge remote-tracking branch 'origin/master'
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Lynne Megido 2021-04-21 17:29:25 +10:00
commit 6a7577d874
Signed by: lynnesbian
GPG Key ID: F0A184B5213D9F90

View File

@ -1,9 +1,26 @@
image: "rust:latest"
default:
before_script:
- rustc --version
stages:
- build
- test
stable:
build:
stage: build
image: rust:latest
script:
- cargo build --verbose
- cargo test --verbose
cargo-test:
stage: test
script:
cargo test --verbose
clippy:
stage: test
script:
- rustup component add clippy
- ./clippy.sh