Skip to content

Commit

Permalink
activate windows CI
Browse files Browse the repository at this point in the history
  • Loading branch information
ArnoStrouwen committed Feb 1, 2024
1 parent 061ae0b commit 02c1f9a
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 7 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,17 @@ on:
- 'docs/**'
jobs:
test:
runs-on: ubuntu-latest
runs-on: ${{ matrix.os }}
strategy:
matrix:
group:
- Core
version:
- '1'
os:
- ubuntu-latest
- macos-latest
- windows-latest
steps:
- uses: actions/checkout@v4
- uses: julia-actions/setup-julia@v1
Expand Down
14 changes: 8 additions & 6 deletions test/runtests.jl
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 02c1f9a

Please sign in to comment.