~starkingdoms/starkingdoms

ref: 8040f221e2a80d88a7a5ba849aa4eb8912388f71 starkingdoms/.gitlab-ci.yml -rw-r--r-- 403 bytes
8040f221 — ghostlyzsh yay merged the file swap (why git why) 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