Skip to content

Commit 90bf72c

Browse files
committed
Only run dogfood on linux in CI
1 parent 01ef7c7 commit 90bf72c

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

.github/workflows/clippy_bors.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -115,8 +115,13 @@ jobs:
115115
run: cargo build --features deny-warnings,internal
116116

117117
- name: Test
118+
if: runner.os == 'Linux'
118119
run: cargo test --features deny-warnings,internal
119120

121+
- name: Test
122+
if: runner.os != 'Linux'
123+
run: cargo test --features deny-warnings,internal -- --skip dogfood
124+
120125
- name: Test clippy_lints
121126
run: cargo test --features deny-warnings,internal
122127
working-directory: clippy_lints

0 commit comments

Comments
 (0)