diff options
| author | Cameron Steffen <cam.steffen94@gmail.com> | 2021-02-26 12:10:24 -0600 |
|---|---|---|
| committer | Cameron Steffen <cam.steffen94@gmail.com> | 2021-02-26 12:10:24 -0600 |
| commit | 1368cb34d1b3cbcb6a26f3e337cb94cbe9e8ae5f (patch) | |
| tree | bc2d92239782561b8cef00b4f9d4724c0496ccef | |
| parent | d5223be2e30a9d116b839bda418bec99d2949a68 (diff) | |
| download | rust-1368cb34d1b3cbcb6a26f3e337cb94cbe9e8ae5f.tar.gz rust-1368cb34d1b3cbcb6a26f3e337cb94cbe9e8ae5f.zip | |
Revert "Test workspace at once"
This reverts commit e355652fec704f307b50d42fb6a08172dc1e08bf.
| -rw-r--r-- | .github/workflows/clippy.yml | 12 | ||||
| -rw-r--r-- | .github/workflows/clippy_bors.yml | 12 |
2 files changed, 20 insertions, 4 deletions
diff --git a/.github/workflows/clippy.yml b/.github/workflows/clippy.yml index f6ac936df4d..9d5e12aac5f 100644 --- a/.github/workflows/clippy.yml +++ b/.github/workflows/clippy.yml @@ -53,8 +53,16 @@ jobs: - name: Test "--fix -Zunstable-options" run: cargo run --features deny-warnings,internal-lints --bin cargo-clippy -- clippy --fix -Zunstable-options - - name: Test Workspace - run: cargo test --all --features deny-warnings,internal-lints + - name: Test + run: cargo test --features deny-warnings,internal-lints + + - name: Test clippy_lints + run: cargo test --features deny-warnings,internal-lints + working-directory: clippy_lints + + - name: Test rustc_tools_util + run: cargo test --features deny-warnings + working-directory: rustc_tools_util - name: Test clippy_dev run: cargo test --features deny-warnings diff --git a/.github/workflows/clippy_bors.yml b/.github/workflows/clippy_bors.yml index 9d24b0293c4..5d846eb64c7 100644 --- a/.github/workflows/clippy_bors.yml +++ b/.github/workflows/clippy_bors.yml @@ -112,8 +112,16 @@ jobs: - name: Build run: cargo build --features deny-warnings,internal-lints - - name: Test Workspace - run: cargo test --all --features deny-warnings,internal-lints + - name: Test + run: cargo test --features deny-warnings,internal-lints + + - name: Test clippy_lints + run: cargo test --features deny-warnings,internal-lints + working-directory: clippy_lints + + - name: Test rustc_tools_util + run: cargo test --features deny-warnings + working-directory: rustc_tools_util - name: Test clippy_dev run: cargo test --features deny-warnings |
