File tree Expand file tree Collapse file tree 2 files changed +27
-1
lines changed Expand file tree Collapse file tree 2 files changed +27
-1
lines changed Original file line number Diff line number Diff line change
1
+ name : CompatHelper
2
+
3
+ on :
4
+ schedule :
5
+ - cron : ' 00 * * * *'
6
+ issues :
7
+ types : [opened, reopened]
8
+
9
+ jobs :
10
+ build :
11
+ runs-on : ${{ matrix.os }}
12
+ strategy :
13
+ matrix :
14
+ julia-version : [1.2.0]
15
+ julia-arch : [x86]
16
+ os : [ubuntu-latest]
17
+ steps :
18
+ - uses : julia-actions/setup-julia@latest
19
+ with :
20
+ version : ${{ matrix.julia-version }}
21
+ - name : Pkg.add("CompatHelper")
22
+ run : julia -e 'using Pkg; Pkg.add("CompatHelper")'
23
+ - name : CompatHelper.main()
24
+ env :
25
+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
26
+ run : julia -e 'using CompatHelper; CompatHelper.main()'
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ Statistics = "10745b16-79ce-11e8-11f9-7d13ad32a3b2"
12
12
[compat ]
13
13
julia = " 1"
14
14
BinaryProvider = " 0.5"
15
- Requires = " 0.5"
15
+ Requires = " 0.5, 1.0 "
16
16
17
17
[extras ]
18
18
Test = " 8dfed614-e22c-5e08-85e1-65c5234f0b40"
You can’t perform that action at this time.
0 commit comments