Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,9 @@ jobs:
fail-fast: false
matrix:
version:
- '1.6'
- '1.7'
- '1.8'
- '1.9'
- '1.10'
- '1.11'
Expand Down
5 changes: 2 additions & 3 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,13 @@
name = "NDimensionalSparseArrays"
uuid = "6e93e0f3-59a5-426f-9354-1ff93716b9b4"
authors = ["Raphael Sampaio <[email protected]>"]
version = "0.1.0"

[deps]

[compat]
Aqua = "0.8"
LinearAlgebra = "1.0"
Test = "1.0"
julia = "1.9"
julia = "1.0"

[extras]
Aqua = "4c88cf16-eb10-579e-8560-4a9242c79595"
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# NDimensionalSparseArrays.jl

[![CI](https://github.com/raphasampaio/NDimensionalSparseArrays.jl/actions/workflows/CI.yml/badge.svg)](https://github.com/raphasampaio/NDimensionalSparseArrays.jl/actions/workflows/CI.yml)
[![codecov](https://codecov.io/github/raphasampaio/ndimensionalsparsearrays.jl/graph/badge.svg?token=I2kXECoZxZ)](https://codecov.io/github/raphasampaio/ndimensionalsparsearrays.jl)
[![CI](https://github.com/JuliaSparse/NDimensionalSparseArrays.jl/actions/workflows/CI.yml/badge.svg)](https://github.com/JuliaSparse/NDimensionalSparseArrays.jl/actions/workflows/CI.yml)
[![codecov](https://codecov.io/github/JuliaSparse/NDimensionalSparseArrays.jl/graph/badge.svg?token=I2kXECoZxZ)](https://codecov.io/github/JuliaSparse/NDimensionalSparseArrays.jl)
[![Aqua](https://raw.githubusercontent.com/JuliaTesting/Aqua.jl/master/badge.svg)](https://github.com/JuliaTesting/Aqua.jl)

## Overview
Expand Down
2 changes: 1 addition & 1 deletion test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ function recursive_include(path::String)
end
end

@testset verbose = true failfast = true begin
@testset verbose = true begin
if length(ARGS) > 0
include(joinpath(@__DIR__, ARGS[1]))
else
Expand Down