Skip to content

Commit

Permalink
update actions
Browse files Browse the repository at this point in the history
  • Loading branch information
michael-petersen committed Mar 3, 2024
1 parent 33f13d6 commit 312be33
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
arch:
- x64
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- uses: julia-actions/setup-julia@v1
with:
version: ${{ matrix.version }}
Expand All @@ -36,6 +36,6 @@ jobs:
- uses: julia-actions/julia-buildpkg@v1
- uses: julia-actions/julia-runtest@v1
- uses: julia-actions/julia-processcoverage@v1
- uses: codecov/codecov-action@v1
- uses: codecov/codecov-action@v4
with:
file: lcov.info
6 changes: 3 additions & 3 deletions test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ end
FiniteHilbertTransform.GettabD!(ϖ,FHT)

@testset "Legendre Unstable Frequency" begin
@test (@elapsed FiniteHilbertTransform.GettabD!(ϖ,FHT,verbose=4)) < 5e-4
@test (@elapsed FiniteHilbertTransform.GettabD!(ϖ,FHT,verbose=4)) < 5e-2
@test (@allocated FiniteHilbertTransform.GettabD!(ϖ,FHT)) == 0
@test real(FHT.tabDLeg[1]) -0.0399893282162609 atol=tol
@test imag(FHT.tabDLeg[1]) 3.1015819920460506 atol=tol
Expand All @@ -41,7 +41,7 @@ end
FiniteHilbertTransform.GettabD!(ϖ,FHT)

@testset "Legendre Neutral Frequency" begin
@test (@elapsed FiniteHilbertTransform.GettabD!(ϖ,FHT,verbose=4)) < 5e-4
@test (@elapsed FiniteHilbertTransform.GettabD!(ϖ,FHT,verbose=4)) < 5e-2
@test (@allocated FiniteHilbertTransform.GettabD!(ϖ,FHT)) == 0
@test real(FHT.tabDLeg[1]) == 0.0
@test imag(FHT.tabDLeg[1]) 3.141592653589793 atol=tol
Expand All @@ -56,7 +56,7 @@ end
FiniteHilbertTransform.GettabD!(ϖ,FHT)

@testset "Legendre Damped Frequency" begin
@test (@elapsed FiniteHilbertTransform.GettabD!(ϖ,FHT,verbose=4)) < 5e-4
@test (@elapsed FiniteHilbertTransform.GettabD!(ϖ,FHT,verbose=4)) < 5e-2
@test (@allocated FiniteHilbertTransform.GettabD!(ϖ,FHT)) == 0
@test real(FHT.tabDLeg[1]) -0.0399893282162609 atol=tol
@test imag(FHT.tabDLeg[1]) 3.1816033151335357 atol=tol
Expand Down

0 comments on commit 312be33

Please sign in to comment.