File tree Expand file tree Collapse file tree 3 files changed +21
-3
lines changed Expand file tree Collapse file tree 3 files changed +21
-3
lines changed Original file line number Diff line number Diff line change 6
6
branches :
7
7
- main
8
8
tags : ' *'
9
+ schedule :
10
+ - cron : ' 0 15 */14 * *'
9
11
10
12
# Cancel redundant CI tests automatically
11
13
concurrency :
12
14
group : ${{ github.workflow }}-${{ github.ref }}
13
15
cancel-in-progress : true
14
-
16
+
15
17
jobs :
16
18
run_tests :
17
19
name : Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
51
53
- os : windows-latest
52
54
arch : x86
53
55
version : ' pre'
54
- allow_failure : true
56
+ allow_failure : true
55
57
steps :
56
58
- uses : actions/checkout@v4
57
59
- uses : julia-actions/setup-julia@v2
Original file line number Diff line number Diff line change
1
+ name : CompatHelper
2
+ on :
3
+ schedule :
4
+ - cron : ' 00 00 * * *'
5
+ workflow_dispatch :
6
+ jobs :
7
+ CompatHelper :
8
+ runs-on : ubuntu-latest
9
+ steps :
10
+ - name : Pkg.add("CompatHelper")
11
+ run : julia -e 'using Pkg; Pkg.add("CompatHelper")'
12
+ - name : CompatHelper.main()
13
+ env :
14
+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
15
+ COMPATHELPER_PRIV : ${{ secrets.DOCUMENTER_KEY }} # optional
16
+ run : julia -e 'using CompatHelper; CompatHelper.main(; subdirs=["", "test"])' # subdirs can be omitted if not needed
Original file line number Diff line number Diff line change @@ -58,7 +58,7 @@ Glob = "1.2 - 1.3"
58
58
GMT = " 1"
59
59
GridapGmsh = " 0.5 - 0.7"
60
60
ImageIO = " 0.1 - 0.6"
61
- Interpolations = " 0.14, 0.15"
61
+ Interpolations = " 0.14, 0.15, 0.16 "
62
62
JLD2 = " 0.4, 0.5"
63
63
LightXML = " 0.8, 0.9"
64
64
MeshIO = " 0.1 - 0.5"
You can’t perform that action at this time.
0 commit comments