~starkingdoms/starkingdoms

ref: 5eaa81cc1ccc43e7b1e086071a3e9b32c6dd8568 starkingdoms/.gitlab-ci.yml -rw-r--r-- 403 bytes
5eaa81cc — c0repwn3r recv position and planet data on the client 2 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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
    - just build_client_bundle
    - cargo check --locked --bin starkingdoms-server
    - cargo clippy --workspace --verbose --locked