Skip to content

Commit

Permalink
run tests directly
Browse files Browse the repository at this point in the history
  • Loading branch information
nhz2 committed Jul 28, 2024
1 parent d2af4fd commit 3e71ffe
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,11 +46,16 @@ jobs:
using Pkg
Pkg.Registry.update()
Pkg.develop([
PackageSpec(path="."),
PackageSpec(path="./lib/TestsForCodecPackages"),
])
Pkg.instantiate()
shell: julia --project=. --color=yes --check-bounds=yes {0}
- uses: julia-actions/julia-runtest@v1
shell: julia --project=test --color=yes --check-bounds=yes {0}
- name: Run tests
env:
JULIA_LOAD_PATH: "@"
run: |
julia --project=test --color=yes --depwarn=yes --warn-overwrite=yes --check-bounds=yes --startup-file=no --code-coverage=user runtests.jl
- uses: julia-actions/julia-processcoverage@v1
- uses: codecov/codecov-action@v4
with:
Expand Down

0 comments on commit 3e71ffe

Please sign in to comment.