Skip to content

Commit 5019863

Browse files
committed
Add more julias
1 parent 082cc7d commit 5019863

File tree

4 files changed

+7
-3
lines changed

4 files changed

+7
-3
lines changed

.github/workflows/CI.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,9 @@ jobs:
2828
fail-fast: false
2929
matrix:
3030
version:
31+
- '1.6'
32+
- '1.7'
33+
- '1.8'
3134
- '1.9'
3235
- '1.10'
3336
- '1.11'

Project.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
name = "NDimensionalSparseArrays"
22
uuid = "6e93e0f3-59a5-426f-9354-1ff93716b9b4"
3+
authors = ["Raphael Sampaio <[email protected]>"]
34
version = "0.1.0"
45

56
[deps]
@@ -8,7 +9,7 @@ version = "0.1.0"
89
Aqua = "0.8"
910
LinearAlgebra = "1.0"
1011
Test = "1.0"
11-
julia = "1.9"
12+
julia = "1.6"
1213

1314
[extras]
1415
Aqua = "4c88cf16-eb10-579e-8560-4a9242c79595"

test/runtests.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ function recursive_include(path::String)
1414
end
1515
end
1616

17-
@testset verbose = true failfast = true begin
17+
@testset verbose = true begin
1818
if length(ARGS) > 0
1919
include(joinpath(@__DIR__, ARGS[1]))
2020
else

test/test.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22

33
SET BASEPATH=%~dp0
44

5-
CALL julia +1.11 --project=%BASEPATH%\.. -e "import Pkg; Pkg.test()"
5+
CALL julia +1.6 --project=%BASEPATH%\.. -e "import Pkg; Pkg.test()"

0 commit comments

Comments
 (0)