From 4e12052f5a15ccff1c6e20cdffadc57c742087b2 Mon Sep 17 00:00:00 2001 From: Roey Darwish Dror Date: Thu, 1 Aug 2019 15:21:09 +0300 Subject: [PATCH] Fix the azure pipeline --- azure-pipelines.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 8f451c8..aa07de9 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -5,8 +5,10 @@ stages: displayName: Sanity Check pool: vmImage: 'ubuntu-16.04' - container: 'rust:latest' + container: 'rust:latest' steps: + - script: rustup component add clippy rustfmt + displayName: Install clippy and rustfmt - script: cargo fmt -- --check displayName: Check Formatting - script: cargo check --all