File tree 3 files changed +22
-4
lines changed
3 files changed +22
-4
lines changed Original file line number Diff line number Diff line change
1
+ name : CompatHelper
2
+
3
+ on :
4
+ schedule :
5
+ - cron : ' 00 00 * * *'
6
+
7
+ jobs :
8
+ CompatHelper :
9
+ runs-on : ubuntu-latest
10
+ steps :
11
+ - name : Pkg.add("CompatHelper")
12
+ run : julia -e 'using Pkg; Pkg.add("CompatHelper")'
13
+ - name : CompatHelper.main()
14
+ env :
15
+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
16
+ COMPATHELPER_PRIV : ${{ secrets.COMPATHELPER_PRIV }}
17
+ run : julia -e 'using CompatHelper; CompatHelper.main()'
Original file line number Diff line number Diff line change 10
10
- osx
11
11
12
12
julia :
13
- - 1.1
14
13
- 1.4
14
+ - nightly
15
15
16
16
# matrix:
17
17
# allow_failures:
32
32
script :
33
33
- julia --project=docs/ -e 'using Pkg; Pkg.develop(PackageSpec(path=pwd())); Pkg.instantiate()'
34
34
- julia --project=docs/ docs/make.jl
35
- after_success : skip
35
+ after_success : skip
36
36
37
37
after_success :
38
38
- julia -e 'import Pkg; Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder())'
39
39
40
- sudo : false
40
+ sudo : false
Original file line number Diff line number Diff line change 1
1
environment :
2
2
matrix :
3
- - julia_version : 1.1
3
+ - julia_version : 1.4
4
+ - julia_version : nightly
4
5
5
6
platform :
6
7
- x86 # 32-bit
You can’t perform that action at this time.
0 commit comments