~starkingdoms/starkingdoms

ref: 5e6200e579fe959587c38348ec01ec543d1906a8 starkingdoms/.gitlab-ci.yml -rw-r--r-- 403 bytes
5e6200e5 — ghostlyzsh cargo fix, deleted left over file 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