Skip to content

Commit 241041e

Browse files
Temporary test job for testing PowerShell behavior
1 parent 226e05d commit 241041e

File tree

1 file changed

+33
-0
lines changed

1 file changed

+33
-0
lines changed

.github/workflows/checks.yml

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,39 @@ on:
88
permissions: read-all
99

1010
jobs:
11+
temp:
12+
runs-on: windows-2025
13+
steps:
14+
- shell: powershell
15+
run: |
16+
echo 'gh --help'
17+
gh --help
18+
19+
echo ''
20+
echo 'gh `--help'
21+
gh `--help
22+
23+
echo ''
24+
echo 'gh ``--help'
25+
gh ``--help
26+
27+
28+
echo ''
29+
echo "gh '--help'"
30+
gh '--help'
31+
32+
echo ''
33+
echo "gh '`--help'"
34+
gh '`--help'
35+
36+
echo ''
37+
echo "gh '``--help'"
38+
gh '``--help'
39+
40+
41+
echo ''
42+
echo "gh ' --help'"
43+
gh ' --help'
1144
check:
1245
name: ${{ matrix.what }}
1346
runs-on: ubuntu-24.04

0 commit comments

Comments
 (0)