Browse Source

Run CI on Julia 1.4.

pull/96/head
Fredrik Ekre 6 years ago
parent
commit
27ccd5b38b
  1. 2
      .appveyor.yml
  2. 2
      .github/workflows/docs.yml
  3. 6
      .travis.yml

2
.appveyor.yml

@ -1,6 +1,6 @@ @@ -1,6 +1,6 @@
environment:
matrix:
- julia_version: 1.3
- julia_version: 1.4
# - julia_version: latest
platform:

2
.github/workflows/docs.yml

@ -13,7 +13,7 @@ jobs: @@ -13,7 +13,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
julia-version: [1.3.1]
julia-version: [1.4]
julia-arch: [x86]
os: [ubuntu-latest]
steps:

6
.travis.yml

@ -5,21 +5,21 @@ os: @@ -5,21 +5,21 @@ os:
- osx
julia:
- 1.0
- 1.3
- 1.4
- nightly
branches:
only:
- master
- /^v\d+\.\d+(\.\d+)?(-\S*)?$/
after_success:
- if [[ $TRAVIS_JULIA_VERSION = 1.3 ]] && [[ $TRAVIS_OS_NAME = linux ]]; then
- if [[ $TRAVIS_JULIA_VERSION = 1.4 ]] && [[ $TRAVIS_OS_NAME = linux ]]; then
julia --project=test/coverage -e 'using Pkg; Pkg.instantiate();
using Coverage; Codecov.submit(Codecov.process_folder())';
fi
# jobs:
# include:
# - stage: Documentation
# julia: 1.3
# julia: 1.4
# os: linux
# script:
# - julia --project=docs -e 'using Pkg; Pkg.instantiate()'

Loading…
Cancel
Save