From 544c397a38f272f0ac2ffa1a3195fe6a07f2ddbd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=BF=97=E5=AE=87?= Date: Fri, 4 Nov 2022 11:16:03 +0800 Subject: [PATCH] Modified build, clippy and test steps Co-authored-by: Daniela Brozzoni --- .github/workflows/cont_integration.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/cont_integration.yml b/.github/workflows/cont_integration.yml index e7def9d0..458270ab 100644 --- a/.github/workflows/cont_integration.yml +++ b/.github/workflows/cont_integration.yml @@ -52,12 +52,12 @@ jobs: - name: Update toolchain run: rustup update - name: Build - run: cargo build --features ${{ matrix.features }} --no-default-features + run: cargo build --features ${{ matrix.features }} - name: Clippy if: ${{ matrix.rust.clippy }} - run: cargo clippy --all-targets --features ${{ matrix.features }} --no-default-features -- -D warnings + run: cargo clippy --all-targets --features ${{ matrix.features }} -- -D warnings - name: Test - run: cargo test --features ${{ matrix.features }} --no-default-features + run: cargo test --features ${{ matrix.features }} test-readme-examples: name: Test README.md examples