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?