Test Julia 1.11 in CI

Somehow, I am unable to have CI.yml test Julia version ‘1.11’.

The error I receive is

Could not find a Julia version that matches 1.11

My CI.yml matrix looks like this:

      matrix:
        version:
          - '1.6'
          - '1'
          - '1.11'
          - 'nightly'
        os:
          - ubuntu-latest
          - macOS-latest
          - windows-latest
        arch:
          - x64

I also tested ‘beta’ and ‘1.11-beta’ but they all failed as well.
What am I missing?

Assuming you’re using GitHub Actions and Reading the julia-actions/setup-julia workflow to install Julia (you didn’t specify any of this), you’re missing to read its documentation

  • '~1.3.0-0' is a tilde version range that includes all pre-releases of 1.3.0. It matches all versions ≥ 1.3.0- and < 1.4.0.
2 Likes