Skip to content

Commit cf156dd

Browse files
authored
Merge pull request #21 from DilumAluthge-forks/dpa/ci-julia-versions
CI: Update the Julia versions that are used in CI
2 parents 773a5d4 + 5081faf commit cf156dd

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

.github/workflows/ci.yml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,15 @@ jobs:
1111
test:
1212
runs-on: ubuntu-latest
1313
strategy:
14+
fail-fast: false
1415
matrix:
1516
version:
16-
- '1.0.5'
17-
- '1.5.4'
18-
- '1.6.0'
17+
# Please note: You must specify the full Julia version number (major.minor.patch).
18+
# 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
1923
steps:
2024
- uses: actions/checkout@v2
2125
- name: Setup Docker

0 commit comments

Comments
 (0)