We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 502467c commit f0f84bdCopy full SHA for f0f84bd
.github/workflows/ci.yml
@@ -14,10 +14,12 @@ jobs:
14
fail-fast: false
15
matrix:
16
version:
17
- - '1.0' # minimum Julia version supported in Project.toml
18
- - '1.6' # previous LTS
19
- - '1.10' # current LTS
20
- - '1' # automatically expands to the latest stable 1.x release
+ # Please note: You must specify the full Julia version number (major.minor.patch).
+ # This is because the value here will be directly interpolated into a download URL.
+ - '1.0.5' # minimum Julia version supported in Project.toml
+ - '1.6.7' # previous LTS
21
+ - '1.10.7' # current LTS
22
+ - '1.11.2' # currently the latest stable release
23
steps:
24
- uses: actions/checkout@v2
25
- name: Setup Docker
0 commit comments