steps: - name: server_fmt image: registry.gitlab.com/starkingdoms.tk/starkingdoms.tk/build_env:2024040603 commands: - cd server - rustfmt **/*.rs --check --edition 2021 --color always environment: CARGO_INCREMENTAL: "0" - name: server_clippy image: registry.gitlab.com/starkingdoms.tk/starkingdoms.tk/build_env:2024040603 commands: - cd server - cargo clippy --profile release-ci --color always environment: CARGO_INCREMENTAL: "0" - name: server_build image: registry.gitlab.com/starkingdoms.tk/starkingdoms.tk/build_env:2024040603 commands: - cd server - cargo build --profile release-ci --color always environment: CARGO_INCREMENTAL: "0"