Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

aqua CI #175

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ jobs:
- Core
version:
- '1'
- '1.6'
steps:
- uses: actions/checkout@v4
- uses: julia-actions/setup-julia@v1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/Downstream.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
GROUP: ${{ matrix.package.group }}
strategy:
matrix:
julia-version: [1,1.6]
julia-version: [1]
os: [ubuntu-latest]
package:
- {user: SciML, repo: StochasticDiffEq.jl, group: Interface}
Expand Down
18 changes: 16 additions & 2 deletions Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,24 +30,38 @@ ReverseDiff = "37e2e3b7-166d-5795-8a7a-e32c996b4267"
DiffEqNoiseProcessReverseDiffExt = "ReverseDiff"

[compat]
Aqua = "0.8"
Cubature = "1"
DiffEqBase = "6.11"
Distributions = "0.22, 0.23, 0.24, 0.25"
GPUArraysCore = "0.1"
HypothesisTests = "0.11"
LinearAlgebra = "1"
Markdown = "1"
Optim = "1"
Pkg = "1"
PoissonRandom = "0.4"
QuadGK = "2"
Random = "1"
Random123 = "1.2"
RandomNumbers = "1.3"
RecipesBase = "0.7, 0.8, 1.0"
RecursiveArrayTools = "2"
Requires = "1"
ResettableStacks = "0.6, 1.0"
ReverseDiff = "1"
SDEProblemLibrary = "0.1"
SciMLBase = "1, 2"
StaticArrays = "1"
StaticArraysCore = "1.4"
Statistics = "1"
julia = "1.6"
StatsBase = "0.34"
StochasticDiffEq = "6"
Test = "1"
julia = "1.9"

[extras]
Aqua = "4c88cf16-eb10-579e-8560-4a9242c79595"
Cubature = "667455a9-e2ce-5579-9412-b964f529a492"
Distributions = "31c24e10-a181-5473-b8eb-7969acd0382f"
HypothesisTests = "09f84164-cd44-5f33-b23f-e6b0d136a0d5"
Expand All @@ -61,4 +75,4 @@ StochasticDiffEq = "789caeaf-c7a9-5a7d-9973-96adeb23e2a0"
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"

[targets]
test = ["Test", "SDEProblemLibrary", "Pkg", "StatsBase", "StaticArrays", "StochasticDiffEq", "Distributions", "HypothesisTests", "Cubature", "RandomNumbers"]
test = ["Aqua", "Test", "SDEProblemLibrary", "Pkg", "StatsBase", "StaticArrays", "StochasticDiffEq", "Distributions", "HypothesisTests", "Cubature", "RandomNumbers"]
13 changes: 13 additions & 0 deletions test/qa.jl
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
using DiffEqNoiseProcess, Aqua
@testset "Aqua" begin
Aqua.find_persistent_tasks_deps(DiffEqNoiseProcess)
Aqua.test_ambiguities(DiffEqNoiseProcess, recursive = false)
Aqua.test_deps_compat(DiffEqNoiseProcess)
Aqua.test_piracies(DiffEqNoiseProcess,
treat_as_own = [DiffEqNoiseProcess.AbstractNoiseProcess,
DiffEqNoiseProcess.AbstractDEAlgorithm])
Aqua.test_project_extras(DiffEqNoiseProcess)
Aqua.test_stale_deps(DiffEqNoiseProcess)
Aqua.test_unbound_args(DiffEqNoiseProcess)
Aqua.test_undefined_exports(DiffEqNoiseProcess)
end
1 change: 1 addition & 0 deletions test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ end

@time begin
if GROUP == "All" || GROUP == "Core1"
include("qa.jl")
include("interpolation_test.jl")
include("RSwM1_test.jl")
include("RSwM2_test.jl")
Expand Down
Loading