steps:
- name: server_fmt
image: coresdev/stk_build_env
commands:
- cd server
- rustfmt **/*.rs --check --edition 2021 --color always
environment:
CARGO_INCREMENTAL: "0"
- name: server_clippy
image: coresdev/stk_build_env
commands:
- cd server
- cargo clippy --profile release-ci --color always
environment:
CARGO_INCREMENTAL: "0"
- name: server_build
image: coresdev/stk_build_env
commands:
- cd server
- cargo build --profile release-ci --color always
environment:
CARGO_INCREMENTAL: "0"