git-subtree-dir: ruma-events git-subtree-mainline: d59a616e2c363507a89c92f34aa67e86ee2cfb49 git-subtree-split: 00692d532e26f58d48ead9589dc823403c6e59a5
17 lines
456 B
YAML
17 lines
456 B
YAML
image: archlinux
|
|
packages:
|
|
- rustup
|
|
sources:
|
|
- https://github.com/ruma/ruma-events
|
|
tasks:
|
|
- rustup: |
|
|
# We specify --profile minimal because we'd otherwise download docs
|
|
rustup toolchain install 1.40.0 --profile minimal
|
|
rustup default 1.40.0
|
|
- test: |
|
|
cd ruma-events
|
|
|
|
# Only make sure the code builds with the MSRV. Tests can require later
|
|
# Rust versions, don't compile or run them.
|
|
cargo build --verbose
|