Skip to content

Commit

Permalink
Use Aqua to ensure project quality (#190)
Browse files Browse the repository at this point in the history
Co-authored-by: Jishnu Bhattacharya <[email protected]>
  • Loading branch information
jishnub and jishnub authored Oct 13, 2022
1 parent 4809427 commit 4ad93fc
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,14 @@ SparseArrays = "2f01184e-e22b-5df5-ae63-d93ebab69eaf"
Statistics = "10745b16-79ce-11e8-11f9-7d13ad32a3b2"

[compat]
Aqua = "0.5"
julia = "1.6"

[extras]
Aqua = "4c88cf16-eb10-579e-8560-4a9242c79595"
Base64 = "2a0f44e3-6c83-55bd-87e4-b1978d98bd5f"
StaticArrays = "90137ffa-7385-5640-81b9-e52037218182"
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"

[targets]
test = ["Test", "Base64", "StaticArrays"]
test = ["Aqua", "Test", "Base64", "StaticArrays"]
5 changes: 5 additions & 0 deletions test/runtests.jl
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
using FillArrays, LinearAlgebra, SparseArrays, StaticArrays, Random, Base64, Test, Statistics
import FillArrays: AbstractFill, RectDiagonal, SquareEye

using Aqua
@testset "Project quality" begin
Aqua.test_all(FillArrays, ambiguities=false)
end

include("infinitearrays.jl")

@testset "fill array constructors and convert" begin
Expand Down

0 comments on commit 4ad93fc

Please sign in to comment.