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.
2 parents 773a5d4 + 5081faf commit cf156ddCopy full SHA for cf156dd
.github/workflows/ci.yml
@@ -11,11 +11,15 @@ jobs:
11
test:
12
runs-on: ubuntu-latest
13
strategy:
14
+ fail-fast: false
15
matrix:
16
version:
- - '1.0.5'
17
- - '1.5.4'
18
- - '1.6.0'
+ # 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.
19
+ - '1.0.5' # minimum Julia version supported in Project.toml
20
+ - '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