dtmt/ci/azure-test-all.yml
2019-08-15 19:31:31 -04:00

19 lines
395 B
YAML

steps:
- bash: |
set -e -x
cargo +stable fmt --all -- --check
displayName: Check formatting
- bash: |
set -e -x
cargo test --no-run
displayName: Build everything
env:
RUST_BACKTRACE: 1
CARGO_INCREMENTAL: 0
- bash: |
set -e -x
cargo test
displayName: Run unit tests
env:
RUST_BACKTRACE: 1
CARGO_INCREMENTAL: 0