From 05f7f1b07683f840a45b17427092c2632b40d08b Mon Sep 17 00:00:00 2001 From: Jack Grigg Date: Sun, 30 Aug 2020 22:20:32 +0100 Subject: [PATCH] CI: Install build dependencies when linting --- .github/workflows/ci.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8c35ead..76ac2c5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,6 +13,8 @@ jobs: with: toolchain: 1.41.0 override: true + - name: Install build dependencies + run: sudo apt install libpcsclite-dev # Ensure all code has been formatted with rustfmt - run: rustup component add rustfmt @@ -101,6 +103,8 @@ jobs: with: toolchain: nightly override: true + - name: Install build dependencies + run: sudo apt install libpcsclite-dev - name: cargo fetch uses: actions-rs/cargo@v1 with: