Skip to content

Commit

Permalink
Update julia versions in CI (#1505)
Browse files Browse the repository at this point in the history
* Update julia versions in CI
  • Loading branch information
lgoettgens authored Jul 13, 2023
1 parent 1270e73 commit 242b6e6
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,16 +23,16 @@ jobs:
matrix:
julia-version:
- '1.6'
- '1.8'
- '~1.9.0-0'
- '1.9'
- '~1.10.0-0'
- 'nightly'
os:
- ubuntu-latest
include:
# Add a few windows and macOS jobs (not too many, the number we can run in parallel is limited)
- julia-version: '1.8'
- julia-version: '1.9'
os: macOS-latest
- julia-version: '1.8'
- julia-version: '1.9'
os: windows-latest

steps:
Expand All @@ -54,7 +54,7 @@ jobs:
with:
depwarn: error
- name: "Run doctests"
if: ${{ matrix.julia-version == '1.8' }}
if: ${{ matrix.julia-version == '1.9' }}
run: |
julia --project=docs --color=yes --code-coverage -e '
using Pkg
Expand All @@ -77,7 +77,7 @@ jobs:
- uses: actions/checkout@v3
- uses: julia-actions/setup-julia@v1
with:
version: '1.8'
version: '1.9'
- uses: julia-actions/cache@v1
- uses: julia-actions/julia-buildpkg@latest
- uses: julia-actions/julia-docdeploy@latest
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/oscar.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
- name: "Set up Julia"
uses: julia-actions/setup-julia@v1
with:
version: '~1.8.0-0'
version: '~1.9.0-0'
- name: OscarDevTools - CI
if: github.repository == 'oscar-system/OscarDevTools.jl'
run: |
Expand Down Expand Up @@ -106,7 +106,7 @@ jobs:
echo '${{ env.oscar_run_tests }}'
julia --color=yes --project=oscar-dev/project/ -e '${{ env.oscar_run_tests }}'
- name: "Run doctests"
if: steps.setupdev.outputs.skiptests != 'true' && (matrix.julia-version == '~1.8.0-0' || matrix.julia-version == '1.8')
if: steps.setupdev.outputs.skiptests != 'true'
run: |
echo '${{ env.oscar_run_doctests }}'
julia --color=yes --project=oscar-dev/project/ -e '${{ env.oscar_run_doctests }}'

0 comments on commit 242b6e6

Please sign in to comment.