From 3b87d8273e2e30fba7da97b232def85c52167a22 Mon Sep 17 00:00:00 2001 From: Dirkjan Ochtman Date: Tue, 22 Nov 2022 09:58:48 -0800 Subject: [PATCH] Remove trailing whitespace from workflow --- .github/workflows/ci.yml | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index bb4713b..ef262e2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -32,37 +32,37 @@ jobs: profile: minimal toolchain: ${{ matrix.rust }} override: true - + - name: Checkout code uses: actions/checkout@v2 - + - name: Build code uses: actions-rs/cargo@v1 with: command: build args: --all --all-features - + - name: Test code uses: actions-rs/cargo@v1 with: command: test args: --all --all-features - + audit: needs: test runs-on: ubuntu-latest - + steps: - name: Checkout code uses: actions/checkout@v2 - + - name: Audit dependencies uses: EmbarkStudios/cargo-deny-action@v1 - + lint: needs: test runs-on: ubuntu-latest - + steps: - name: Install toolchain uses: actions-rs/toolchain@v1 @@ -71,10 +71,10 @@ jobs: toolchain: stable override: true components: clippy - + - name: Checkout code uses: actions/checkout@v2 - + - name: Check code formatting uses: actions-rs/cargo@v1 with: