~starkingdoms/starkingdoms

ref: 135792ca4ae934d7fc899821c1154b0badf974ae starkingdoms/.gitlab-ci.yml -rw-r--r-- 403 bytes
135792ca — c0repwn3r this was the entire problem with the renderer, the entire time 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