diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml index eb65210..77994e9 100644 --- a/.github/workflows/check.yml +++ b/.github/workflows/check.yml @@ -130,5 +130,5 @@ jobs: uses: dtolnay/rust-toolchain@b3b07ba8b418998c39fb20f53e8b695cdcc8de1b # branch=master with: toolchain: ${{ matrix.msrv }} - - name: cargo +${{ matrix.msrv }} check - run: cargo check + - name: cargo +${{ matrix.msrv }} check --lib --bins --examples + run: cargo check --lib --bins --examples diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index dfa8192..0e8c2ad 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -46,7 +46,7 @@ jobs: minimal: # This action chooses the oldest version of the dependencies permitted by Cargo.toml to ensure # that this crate is compatible with the minimal version that this crate and its dependencies - # require. This will pickup issues where this create relies on functionality that was introduced + # require. This will pickup issues where this crate relies on functionality that was introduced # later than the actual version specified (e.g., when we choose just a major version, but a # method was added after this version). #