Skip to content

Commit

Permalink
enable tests for Julia v1.5. Drop tests for Julia v1.1 -> v1.4.
Browse files Browse the repository at this point in the history
  • Loading branch information
felipenoris committed Oct 17, 2020
1 parent 3a6c67e commit 2d082fe
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,23 +4,20 @@ os:
- osx
julia:
- 1.0
- 1.1
- 1.2
- 1.3
- 1.4
- 1.5
- nightly
env:
- JULIA_PROJECT="@."
notifications:
email: false
after_success:
- julia -e '(ENV["TRAVIS_JULIA_VERSION"] != "1.4" || ENV["TRAVIS_OS_NAME"] != "linux") && exit(); using Pkg; Pkg.add("Coverage"); using Coverage; Codecov.submit(Codecov.process_folder())'
- julia -e '(ENV["TRAVIS_JULIA_VERSION"] != "1.5" || ENV["TRAVIS_OS_NAME"] != "linux") && exit(); using Pkg; Pkg.add("Coverage"); using Coverage; Codecov.submit(Codecov.process_folder())'
jobs:
allow_failures:
- julia: nightly
include:
- stage: "Documentation"
julia: 1.4
julia: 1.5
os: linux
script:
- julia --project=docs/ -e 'using Pkg; Pkg.develop(PackageSpec(path=pwd())); Pkg.instantiate()'
Expand Down

2 comments on commit 2d082fe

@felipenoris
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/23152

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.4.5 -m "<description of version>" 2d082fe4499812b6f600463474028c70e638316b
git push origin v0.4.5

Please sign in to comment.