Conduit is a simple, fast and reliable chat server powered by Matrix https://conduit.rs
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
436 B
16 lines
436 B
image: "rust:latest" |
|
|
|
variables: |
|
GIT_SUBMODULE_STRATEGY: recursive |
|
|
|
before_script: |
|
- apt-get update -yqq |
|
- apt-get install -yqq --no-install-recommends build-essential libssl-dev pkg-config |
|
- rustup component add clippy rustfmt |
|
|
|
test:cargo: |
|
script: |
|
- rustc --version && cargo --version # Print version info for debugging |
|
- cargo test --workspace --verbose --locked |
|
- cargo fmt --all -- --check |
|
- cargo clippy
|
|
|