From aa4d8a0338fcac5436db644d8f3b64ccbef4dc96 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?H=C3=A9ctor=20Ram=C3=B3n=20Jim=C3=A9nez?= Date: Wed, 18 Sep 2019 17:40:33 +0200 Subject: [PATCH] Check targets in integration test --- .github/workflows/integration.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml index 3fc5463..00ea2c1 100644 --- a/.github/workflows/integration.yml +++ b/.github/workflows/integration.yml @@ -38,3 +38,6 @@ jobs: run: | cargo fmt --version cargo clippy --version + - name: Check targets are installed correctly + if: matrix.rust == 'stable' + run: rustup target list --installed | grep '${{ matrix.targets }}'