M .gitlab-ci.yml => .gitlab-ci.yml +5 -1
@@ 2,9 2,13 @@ image: "rust:latest"
before_script:
- apt-get update -yqq
- apt-get install -yqq --no-install-recommends build-essential
+ - rustup component add clippy
+ - cargo install just
+ - just install_tooling
check:cargo:
script:
- rustc --version && cargo --version
- - cargo check --workspace --verbose --locked
+ - just build_client_bundle
+ - cargo check --locked --bin starkingdoms-server
- cargo clippy --workspace --verbose --locked=
\ No newline at end of file