diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 3c2a841..c551b33 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -12,13 +12,16 @@ on: - 'docs/**' jobs: test: - runs-on: ubuntu-latest + runs-on: ${{ matrix.os }} strategy: matrix: group: - Core version: - '1' + os: + - ubuntu-latest + - macos-latest steps: - uses: actions/checkout@v4 - uses: julia-actions/setup-julia@v1 diff --git a/test/runtests.jl b/test/runtests.jl index 91b3a0a..4c66355 100644 --- a/test/runtests.jl +++ b/test/runtests.jl @@ -1,7 +1,9 @@ -using SafeTestsets +using SafeTestsets, Test -@safetestset "Quality Assurance" begin include("qa.jl") end -@safetestset "Expectation Process Noise Tests" begin include("processnoise.jl") end -@safetestset "Expectation Interface Tests" begin include("interface.jl") end -@safetestset "Expectation Solve Tests" begin include("solve.jl") end -@safetestset "Expectation Differentiation Tests" begin include("differentiation.jl") end +@testset "Integrals" begin + @safetestset "Quality Assurance" include("qa.jl") + @safetestset "Expectation Process Noise Tests" include("processnoise.jl") + @safetestset "Expectation Interface Tests" include("interface.jl") + @safetestset "Expectation Solve Tests" include("solve.jl") + @safetestset "Expectation Differentiation Tests" include("differentiation.jl") +end