Skip to content

Commit 1579d8e

Browse files
authored
Update Project.toml (#165)
* Update travis and appveyor * Add CompatHelper * Remove 1.5 from travis
1 parent 8d8cb7b commit 1579d8e

File tree

3 files changed

+22
-4
lines changed

3 files changed

+22
-4
lines changed

.github/workflows/CompatHelper.yml

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
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()'

.travis.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ os:
1010
- osx
1111

1212
julia:
13-
- 1.1
1413
- 1.4
14+
- nightly
1515

1616
# matrix:
1717
# allow_failures:
@@ -32,9 +32,9 @@ jobs:
3232
script:
3333
- julia --project=docs/ -e 'using Pkg; Pkg.develop(PackageSpec(path=pwd())); Pkg.instantiate()'
3434
- julia --project=docs/ docs/make.jl
35-
after_success: skip
35+
after_success: skip
3636

3737
after_success:
3838
- julia -e 'import Pkg; Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder())'
3939

40-
sudo: false
40+
sudo: false

appveyor.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
environment:
22
matrix:
3-
- julia_version: 1.1
3+
- julia_version: 1.4
4+
- julia_version: nightly
45

56
platform:
67
- x86 # 32-bit

0 commit comments

Comments
 (0)