File tree Expand file tree Collapse file tree 1 file changed +16
-15
lines changed Expand file tree Collapse file tree 1 file changed +16
-15
lines changed Original file line number Diff line number Diff line change 1
- # see the docs at https://github.com/JuliaRegistries/CompatHelper.jl
2
-
3
1
name : CompatHelper
4
-
5
2
on :
6
3
schedule :
7
- - cron : ' 00 00 * * *'
4
+ - cron : 0 0 * * *
8
5
workflow_dispatch :
9
-
10
6
jobs :
11
7
CompatHelper :
12
- runs-on : ${{ matrix.os }}
13
- strategy :
14
- matrix :
15
- julia-version : [1.2.0]
16
- julia-arch : [x86]
17
- os : [ubuntu-latest]
8
+ runs-on : ubuntu-latest
18
9
steps :
19
- - name : Pkg.add("CompatHelper")
20
- run : julia -e 'using Pkg; Pkg.add("CompatHelper")'
21
- - name : CompatHelper.main()
10
+ - name : " Install CompatHelper"
11
+ run : |
12
+ import Pkg
13
+ name = "CompatHelper"
14
+ uuid = "aa819f21-2bde-4658-8897-bab36330d9b7"
15
+ version = "1"
16
+ Pkg.add(; name, uuid, version)
17
+ shell : julia --color=yes {0}
18
+ - name : " Run CompatHelper"
19
+ run : |
20
+ import CompatHelper
21
+ CompatHelper.main(; subdirs = ["", "docs"])
22
+ shell : julia --color=yes {0}
22
23
env :
23
24
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
24
- run : julia -e 'using CompatHelper; CompatHelper.main()'
25
+ COMPATHELPER_PRIV : ${{ secrets.DOCUMENTER_KEY }}
You can’t perform that action at this time.
0 commit comments