Skip to content

Commit 12d0c0c

Browse files
committed
Give name to CompatHelper workflow steps and use shell option
1 parent fd15dc4 commit 12d0c0c

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

.github/workflows/CompatHelper.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,12 @@ jobs:
77
CompatHelper:
88
runs-on: ubuntu-latest
99
steps:
10-
- name: Pkg.add("CompatHelper")
11-
run: julia -e 'using Pkg; Pkg.add("CompatHelper")'
12-
- name: CompatHelper.main()
10+
- name: Install CompatHelper
11+
shell: julia --color=yes {0}
12+
run: using Pkg; Pkg.add("CompatHelper")
13+
- name: Run CompatHelper
14+
shell: julia --color=yes {0}
15+
run: using CompatHelper; CompatHelper.main()
1316
env:
1417
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
1518
COMPATHELPER_PRIV: ${{ secrets.COMPATHELPER_PRIV}}
16-
run: julia -e 'using CompatHelper; CompatHelper.main()'

0 commit comments

Comments
 (0)