File tree Expand file tree Collapse file tree 2 files changed +26
-2
lines changed Expand file tree Collapse file tree 2 files changed +26
-2
lines changed Original file line number Diff line number Diff line change
1
+ name : CompatHelper
2
+
3
+ on :
4
+ schedule :
5
+ - cron : " 00 * * * *"
6
+
7
+ jobs :
8
+ CompatHelper :
9
+ runs-on : ${{ matrix.os }}
10
+ strategy :
11
+ matrix :
12
+ julia-version : [1.3.0]
13
+ julia-arch : [x86]
14
+ os : [ubuntu-latest]
15
+ steps :
16
+ - uses : julia-actions/setup-julia@latest
17
+ with :
18
+ version : ${{ matrix.julia-version }}
19
+ - name : Pkg.add("CompatHelper")
20
+ run : julia -e 'using Pkg; Pkg.add("CompatHelper")'
21
+ - name : CompatHelper.main()
22
+ env :
23
+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
24
+ run : julia -e 'using CompatHelper; CompatHelper.main()'
Original file line number Diff line number Diff line change @@ -10,8 +10,8 @@ LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
10
10
RecipesBase = " 3cdcf5f2-1ef4-517c-9805-6587b60abb01"
11
11
12
12
[compat ]
13
- Intervals = " ≥ 0.5, < 1 .0"
14
- RecipesBase = " 0.7"
13
+ Intervals = " 0.5.0"
14
+ RecipesBase = " 0.7.0 "
15
15
julia = " 1"
16
16
17
17
[extras ]
You can’t perform that action at this time.
0 commit comments