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 477b21f commit 9f177f2Copy full SHA for 9f177f2
.github/workflows/test.yml
@@ -10,6 +10,8 @@ on:
10
- README.md
11
schedule:
12
- cron: '0 7 * * SUN'
13
+ workflow_dispatch:
14
+
15
jobs:
16
test:
17
strategy:
@@ -40,8 +42,10 @@ jobs:
40
42
bundler-cache: true
41
43
- run: ruby -v
44
- name: PATH
- shell: bash
- run: echo $PATH
45
+ shell: pwsh
46
+ run: |
47
+ # Show PATH with Powershell
48
+ $f, $r = $env:PATH.split([IO.Path]::PathSeparator); $r
49
50
- name: build compiler
51
run: |
0 commit comments