Skip to content

Commit 413ea33

Browse files
committed
add aqua automated quality assurance
1 parent abae7f5 commit 413ea33

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

Project.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@ GeoInterface = "1"
1717
julia = "1.6"
1818

1919
[extras]
20+
Aqua = "4c88cf16-eb10-579e-8560-4a9242c79595"
2021
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
2122

2223
[targets]
23-
test = ["Test"]
24+
test = ["Aqua", "Test"]

test/runtests.jl

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
using GeoInterface, Extents
22
using Test, LibGEOS
3+
import Aqua
34

45
version = LibGEOS.GEOSversion()
56
@info "GEOS version $version"
@@ -19,4 +20,5 @@ end
1920
include("test_regressions.jl")
2021
include("test_invalid_geometry.jl")
2122
include("test_strtree.jl")
23+
Aqua.test_all(LibGEOS)
2224
end

0 commit comments

Comments
 (0)