Skip to content

Commit

Permalink
Use julia 1.10 as default in CI (#1609)
Browse files Browse the repository at this point in the history
  • Loading branch information
lgoettgens authored Jan 9, 2024
1 parent 3572e5d commit 34c280b
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 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.9'
- '~1.10.0-0'
- '1.9' # to be removed in the near future
- '1.10'
- '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.9'
- julia-version: '1.10'
os: macOS-latest
- julia-version: '1.9'
- julia-version: '1.10'
os: windows-latest

steps:
Expand All @@ -54,7 +54,7 @@ jobs:
with:
depwarn: error
- name: "Run doctests"
if: ${{ matrix.julia-version == '1.9' }}
if: ${{ matrix.julia-version == '1.10' }}
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.9'
version: '1.10'
- uses: julia-actions/cache@v1
- uses: julia-actions/julia-buildpkg@v1
- uses: julia-actions/julia-docdeploy@v1
Expand Down
2 changes: 1 addition & 1 deletion .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.9.0-0'
version: '1.10'
- name: OscarDevTools - CI
if: github.repository == 'oscar-system/OscarDevTools.jl'
run: |
Expand Down

0 comments on commit 34c280b

Please sign in to comment.