Skip to content

Commit

Permalink
Setup Aqua (#32)
Browse files Browse the repository at this point in the history
  • Loading branch information
tkf authored Mar 21, 2022
1 parent 90bf452 commit 6046de6
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 0 deletions.
1 change: 1 addition & 0 deletions lib/TryExperimental/Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,5 @@ version = "0.1.0-DEV"
Try = "bf1d0ff0-c4a9-496b-85f0-2b0d71c4f32a"

[compat]
Try = "0.1"
julia = "1.6"
4 changes: 4 additions & 0 deletions test/Project.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
[deps]
Aqua = "4c88cf16-eb10-579e-8560-4a9242c79595"
Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4"
InteractiveUtils = "b77e0a4c-d291-57a0-90e8-8db25a27a240"
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
TestFunctionRunner = "792026f5-ac9a-4a19-adcb-47b0ce2deb5d"

[compat]
Aqua = "0.5"
1 change: 1 addition & 0 deletions test/TryTests/Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ authors = ["Takafumi Arakaki <[email protected]> and contributors"]
version = "0.1.0-DEV"

[deps]
Aqua = "4c88cf16-eb10-579e-8560-4a9242c79595"
Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4"
InteractiveUtils = "b77e0a4c-d291-57a0-90e8-8db25a27a240"
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
Expand Down
1 change: 1 addition & 0 deletions test/TryTests/src/TryTests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ include("test_errortrace.jl")
include("test_tools.jl")
include("test_inferrability.jl")
include("test_show.jl")
include("test_aqua.jl")
include("test_doctest.jl")

end # module TryTests
10 changes: 10 additions & 0 deletions test/TryTests/src/test_aqua.jl
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
module TestAqua

using Aqua
using Try
using TryExperimental

test_try() = Aqua.test_all(Try)
test_tryexperimental() = Aqua.test_all(TryExperimental)

end # module

0 comments on commit 6046de6

Please sign in to comment.