Skip to content

Commit f2ef649

Browse files
authored
Merge pull request #269 from haampie/fix-project-config
Fix project config
2 parents 6472d60 + 52c3fcb commit f2ef649

File tree

6 files changed

+28
-58
lines changed

6 files changed

+28
-58
lines changed

.github/workflows/CompatHelper.yml

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
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+
- uses: julia-actions/setup-julia@latest
12+
with:
13+
version: 1.3
14+
- name: Pkg.add("CompatHelper")
15+
run: julia -e 'using Pkg; Pkg.add("CompatHelper")'
16+
- name: CompatHelper.main()
17+
env:
18+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
19+
run: julia -e 'using CompatHelper; CompatHelper.main()'

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@
22
/site
33
/docs/build
44
*.mem
5+
Manifest.toml

.travis.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ os:
33
- linux
44
julia:
55
- 1.0
6+
- 1.3
67
- nightly
78
matrix:
89
allow_failures:
@@ -21,4 +22,4 @@ jobs:
2122
script:
2223
- julia --project=docs/ -e 'using Pkg; Pkg.instantiate(); Pkg.develop(PackageSpec(path=pwd()))'
2324
- julia --project=docs/ docs/make.jl
24-
after_success: skip
25+
after_success: skip

Manifest.toml

-55
This file was deleted.

Project.toml

+4
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,10 @@ Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
99
RecipesBase = "3cdcf5f2-1ef4-517c-9805-6587b60abb01"
1010
SparseArrays = "2f01184e-e22b-5df5-ae63-d93ebab69eaf"
1111

12+
[compat]
13+
julia = "1"
14+
RecipesBase = "^0.6"
15+
1216
[extras]
1317
LinearMaps = "7a12625a-238d-50fd-b39a-03d52299707e"
1418
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"

coverage/coverage.jl

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
get(ENV, "TRAVIS_OS_NAME", "") == "linux" || exit()
2-
get(ENV, "TRAVIS_JULIA_VERSION", "") == "1.0" || exit()
2+
get(ENV, "TRAVIS_JULIA_VERSION", "") == "1.3" || exit()
33

44
using Coverage
55

66
cd(joinpath(dirname(@__FILE__), "..")) do
77
Codecov.submit(Codecov.process_folder())
8-
end
8+
end

0 commit comments

Comments
 (0)