We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 209db01 commit f808f24Copy full SHA for f808f24
.github/workflows/rust-ci.yml
@@ -46,6 +46,14 @@ jobs:
46
run: cargo build --tests --release
47
- name: cargo test
48
run: cargo test --release
49
+ - name: detects powershell
50
+ if: ${{ matrix.os }} != 'macos-14'
51
+ shell: pwsh
52
+ run: cargo test --release -- --ignored is_powershell_true
53
+ - name: doesn't detect powershell
54
55
+ shell: bash
56
+ run: cargo test --release -- --ignored is_powershell_false
57
58
msrv-check:
59
name: Minimum Stable Rust Version Check
0 commit comments