From 57862cf534fbafd4b5ef68ffc4d93e478aeddaf7 Mon Sep 17 00:00:00 2001 From: Fredrik Ekre Date: Sun, 29 Mar 2020 17:05:23 +0200 Subject: [PATCH] Run CI on Julia 1.4. --- .appveyor.yml | 2 +- .github/workflows/docs.yml | 2 +- .travis.yml | 6 +++--- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.appveyor.yml b/.appveyor.yml index 31da32a..30d4b7c 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -1,6 +1,6 @@ environment: matrix: - - julia_version: 1.3 + - julia_version: 1.4 # - julia_version: latest platform: diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 4e4455f..ba0e09f 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -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: diff --git a/.travis.yml b/.travis.yml index fead83c..aab3e2a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -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()'