Skip to content

Commit

Permalink
Use julia 1.10 as default in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
lgoettgens authored and thofma committed Jan 9, 2024
1 parent 37c38e6 commit 42aa14e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ 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
Expand Down Expand Up @@ -53,7 +53,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 @@ -76,7 +76,7 @@ jobs:
- uses: actions/checkout@v3
- uses: julia-actions/setup-julia@v1
with:
version: '1.9'
version: '1.10'
- name: "Cache artifacts"
uses: julia-actions/cache@v1
- name: "Build package"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/oscar.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,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 42aa14e

Please sign in to comment.