From 9f1b326eedbadfc8c0a9a59bab99ea253a7cefd5 Mon Sep 17 00:00:00 2001 From: Rouven Spreckels Date: Fri, 5 Aug 2022 09:02:31 +0200 Subject: [PATCH] Update workflow. --- .github/workflows/build.yml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index f6917d5..fcd12eb 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -15,8 +15,9 @@ jobs: - name: toolchain uses: actions-rs/toolchain@v1 with: - profile: minimal toolchain: nightly + profile: minimal + components: rustfmt, rust-docs, clippy override: true - name: test uses: actions-rs/cargo@v1 @@ -26,7 +27,7 @@ jobs: uses: actions-rs/cargo@v1 with: command: clippy - args: -- --deny clippy::pedantic + args: --tests -- --deny clippy::pedantic - name: doc uses: actions-rs/cargo@v1 with: @@ -44,8 +45,9 @@ jobs: - name: toolchain uses: actions-rs/toolchain@v1 with: - profile: minimal toolchain: nightly + profile: minimal + components: rustfmt, rust-docs, clippy override: true - name: test uses: actions-rs/cargo@v1 @@ -56,7 +58,7 @@ jobs: uses: actions-rs/cargo@v1 with: command: clippy - args: --features libm -- --deny clippy::pedantic + args: --features libm --tests -- --deny clippy::pedantic - name: doc uses: actions-rs/cargo@v1 with: