diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 4716443..7816330 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -13,7 +13,7 @@ jobs: strategy: fail-fast: false matrix: - julia-version: ['1.0', '1', 'nightly'] + julia-version: ['1.0', '1.6', '1', 'nightly'] julia-arch: [x64, x86] os: [ubuntu-latest, macOS-latest, windows-latest] exclude: diff --git a/Project.toml b/Project.toml index 8529b80..3d5ea14 100644 --- a/Project.toml +++ b/Project.toml @@ -8,10 +8,21 @@ Requires = "ae029012-a4dd-5104-9daa-d747884805df" UUIDs = "cf7118a7-6976-5b1a-9a39-7adc72f591a4" [compat] +Pkg = "<0.0.1, 0.7, 1" Requires = "1" +UUIDs = "<0.0.1, 0.7, 1" julia = "0.7, 1" +Aqua = "0.8" +CSVFiles = "1" +CodecZlib = "0.5, 0.6, 0.7" +ColorTypes = "0.11" +FilePathsBase = "0.9" +HTTP = "0.6, 1" +Random = "<0.0.1, 0.7, 1" +Test = "<0.0.1, 0.7, 1" [extras] +Aqua = "4c88cf16-eb10-579e-8560-4a9242c79595" CSVFiles = "5d742f6a-9f54-50ce-8119-2520741973ca" CodecZlib = "944b1d66-785c-5afd-91f1-9de20f533193" ColorTypes = "3da002f7-5984-5a60-b8a6-cbb66c0b333f" @@ -21,4 +32,4 @@ Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c" Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40" [targets] -test = ["ColorTypes", "CodecZlib", "CSVFiles", "FilePathsBase", "HTTP", "Random", "Test"] +test = ["Aqua", "ColorTypes", "CodecZlib", "CSVFiles", "FilePathsBase", "HTTP", "Random", "Test"] diff --git a/test/runtests.jl b/test/runtests.jl index 9812982..f531393 100644 --- a/test/runtests.jl +++ b/test/runtests.jl @@ -25,3 +25,6 @@ end include("test_mimesave.jl") include("integration.jl") end + +using Aqua +Aqua.test_all(FileIO)