Skip to content

Commit

Permalink
Updates
Browse files Browse the repository at this point in the history
  • Loading branch information
raphasampaio committed Dec 8, 2023
1 parent c791c89 commit 8dbdabb
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 24 deletions.
23 changes: 0 additions & 23 deletions .github/workflows/aqua.yml

This file was deleted.

8 changes: 7 additions & 1 deletion Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,17 @@ LoggingExtras = "e6f89c97-d47a-5376-807f-9c37f3926c36"
TOML = "fa267f1f-6049-4f14-aa54-33bafae1ed76"

[compat]
Aqua = "0.8.4"
Dates = "1"
Logging = "1"
LoggingExtras = "1"
Test = "1"
TOML = "1"
julia = "1.7"

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

[targets]
test = ["Test"]
test = ["Aqua", "Test"]
14 changes: 14 additions & 0 deletions test/runtests.jl
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
import LoggingPolyglot

using Aqua
using Test

function testall()
@testset "Aqua.jl" begin
@testset "Ambiguities" begin
Aqua.test_ambiguities(LoggingPolyglot, recursive = false)
end
Aqua.test_all(LoggingPolyglot, ambiguities = false)
end

for file in readdir(@__DIR__)
if file in ["runtests.jl"]
continue
Expand All @@ -10,3 +21,6 @@ for file in readdir(@__DIR__)
include(file)
end
end
end

testall()

0 comments on commit 8dbdabb

Please sign in to comment.