Skip to content

Commit f808f24

Browse files
committed
Check powershell in CI
1 parent 209db01 commit f808f24

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

.github/workflows/rust-ci.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,14 @@ jobs:
4646
run: cargo build --tests --release
4747
- name: cargo test
4848
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+
if: ${{ matrix.os }} != 'macos-14'
55+
shell: bash
56+
run: cargo test --release -- --ignored is_powershell_false
4957

5058
msrv-check:
5159
name: Minimum Stable Rust Version Check

0 commit comments

Comments
 (0)