diff options
| author | Cameron Steffen <cam.steffen94@gmail.com> | 2022-01-12 10:46:05 -0600 |
|---|---|---|
| committer | Cameron Steffen <cam.steffen94@gmail.com> | 2022-01-12 11:00:26 -0600 |
| commit | 90bf72c2cd358eb0770164412d2428cfa0d708e1 (patch) | |
| tree | b95998f9e3306ff7c7e4bfa293f90a07e91f36aa | |
| parent | 01ef7c79322ff86a6e585d379cd0b48108e4a2a4 (diff) | |
| download | rust-90bf72c2cd358eb0770164412d2428cfa0d708e1.tar.gz rust-90bf72c2cd358eb0770164412d2428cfa0d708e1.zip | |
Only run dogfood on linux in CI
| -rw-r--r-- | .github/workflows/clippy_bors.yml | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/.github/workflows/clippy_bors.yml b/.github/workflows/clippy_bors.yml index fe02d9cfc84..989667037c1 100644 --- a/.github/workflows/clippy_bors.yml +++ b/.github/workflows/clippy_bors.yml @@ -115,8 +115,13 @@ jobs: run: cargo build --features deny-warnings,internal - name: Test + if: runner.os == 'Linux' run: cargo test --features deny-warnings,internal + - name: Test + if: runner.os != 'Linux' + run: cargo test --features deny-warnings,internal -- --skip dogfood + - name: Test clippy_lints run: cargo test --features deny-warnings,internal working-directory: clippy_lints |
