diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index df837a517..9da67df10 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -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: @@ -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 @@ -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 diff --git a/.github/workflows/oscar.yml b/.github/workflows/oscar.yml index 3779c9d36..830cf736e 100644 --- a/.github/workflows/oscar.yml +++ b/.github/workflows/oscar.yml @@ -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: | @@ -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 }}'