Skip to content

Commit 4ad93fc

Browse files
authored
Use Aqua to ensure project quality (#190)
Co-authored-by: Jishnu Bhattacharya <[email protected]>
1 parent 4809427 commit 4ad93fc

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

Project.toml

+3-1
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,14 @@ SparseArrays = "2f01184e-e22b-5df5-ae63-d93ebab69eaf"
99
Statistics = "10745b16-79ce-11e8-11f9-7d13ad32a3b2"
1010

1111
[compat]
12+
Aqua = "0.5"
1213
julia = "1.6"
1314

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

1921
[targets]
20-
test = ["Test", "Base64", "StaticArrays"]
22+
test = ["Aqua", "Test", "Base64", "StaticArrays"]

test/runtests.jl

+5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
using FillArrays, LinearAlgebra, SparseArrays, StaticArrays, Random, Base64, Test, Statistics
22
import FillArrays: AbstractFill, RectDiagonal, SquareEye
33

4+
using Aqua
5+
@testset "Project quality" begin
6+
Aqua.test_all(FillArrays, ambiguities=false)
7+
end
8+
49
include("infinitearrays.jl")
510

611
@testset "fill array constructors and convert" begin

0 commit comments

Comments
 (0)