add(test): add Aqua test

This commit is contained in:
Wataru Otsubo 2024-10-29 18:15:30 +09:00
parent 984083657a
commit 3d4865c18f
2 changed files with 21 additions and 2 deletions

View file

@ -23,18 +23,25 @@ InteractiveUtils = "b77e0a4c-d291-57a0-90e8-8db25a27a240"
PSBoardDataBaseInteractiveUtilsExt = "InteractiveUtils"
[compat]
julia = "1.10"
Aqua = "0.8"
AutoHashEquals = "2.2"
CSV = "0.10"
DBInterface = "2"
DataFrames = "1"
Documenter = "1"
Dates = "1.10"
Documenter = "1.7"
Downloads = "1"
InteractiveUtils = "1.10"
Printf = "1.10"
SQLite = "1"
StaticArrays = "1.9"
Tables = "1"
Test = "1.10"
[extras]
Aqua = "4c88cf16-eb10-579e-8560-4a9242c79595"
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
[targets]
test = ["Test"]
test = ["Aqua", "Test"]

View file

@ -210,3 +210,15 @@ true || include("../src/PSBoardDataBase.jl")
end
end
end
using Aqua
@testset "Aqua.jl" begin
Aqua.test_all(
PSBoardDataBase;
# ambiguities = (exclude = [], broken = true),
stale_deps = (ignore = Symbol[:Documenter],),
# deps_compat = (ignore = Symbol[],),
# piracies = false,
)
end