Only run dogfood on linux in CI

This commit is contained in:
Cameron Steffen 2022-01-12 10:46:05 -06:00
parent 01ef7c7932
commit 90bf72c2cd

View File

@ -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