We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 33af37a commit 0a17a2fCopy full SHA for 0a17a2f
.github/workflows/CompatHelper.yml
@@ -3,10 +3,23 @@ on:
3
schedule:
4
- cron: 0 0 * * *
5
workflow_dispatch:
6
+permissions:
7
+ contents: write
8
+ pull-requests: write
9
jobs:
10
CompatHelper:
11
runs-on: ubuntu-latest
12
steps:
13
+ - name: Check if Julia is already available in the PATH
14
+ id: julia_in_path
15
+ run: which julia
16
+ continue-on-error: true
17
+ - name: Install Julia, but only if it is not already available in the PATH
18
+ uses: julia-actions/setup-julia@v1
19
+ with:
20
+ version: '1'
21
+ arch: ${{ runner.arch }}
22
+ if: steps.julia_in_path.outcome != 'success'
23
- name: "Add the General registry via Git"
24
run: |
25
import Pkg
0 commit comments