Fix the azure pipeline

This commit is contained in:
Roey Darwish Dror 2019-08-01 15:21:09 +03:00
parent 6fc15b7c40
commit 4e12052f5a

View File

@ -7,6 +7,8 @@ stages:
vmImage: 'ubuntu-16.04' vmImage: 'ubuntu-16.04'
container: 'rust:latest' container: 'rust:latest'
steps: steps:
- script: rustup component add clippy rustfmt
displayName: Install clippy and rustfmt
- script: cargo fmt -- --check - script: cargo fmt -- --check
displayName: Check Formatting displayName: Check Formatting
- script: cargo check --all - script: cargo check --all