Skip to content

Commit a3df079

Browse files
committed
ci-debug
1 parent 57137c8 commit a3df079

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/CI.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
path: ~/.julia/artifacts
4242
key: ubuntu-test-cache-${{ hashFiles('**/Project.toml') }}
4343
- uses: julia-actions/julia-buildpkg@v1
44-
- run: julia --project=. -e "include(joinpath(\"test\", \"sequential\", \"runtests.jl\"))"
44+
- run: julia --code-coverage --project=. -e "include(joinpath(\"test\", \"sequential\", \"runtests.jl\"))"
4545
- uses: julia-actions/julia-processcoverage@v1
4646
- uses: actions/upload-artifact@v4
4747
with:
@@ -62,7 +62,7 @@ jobs:
6262
path: ~/.julia/artifacts
6363
key: ubuntu-test-cache-${{ hashFiles('**/Project.toml') }}
6464
- uses: julia-actions/julia-buildpkg@v1
65-
- run: julia --project=. -e "include(joinpath(\"test\", \"UtilsTests\", \"runtests.jl\"))"
65+
- run: julia --code-coverage --project=. -e "include(joinpath(\"test\", \"UtilsTests\", \"runtests.jl\"))"
6666
- uses: julia-actions/julia-processcoverage@v1
6767
- uses: actions/upload-artifact@v4
6868
with:
@@ -100,7 +100,7 @@ jobs:
100100
Pkg.add("Coverage");
101101
using Coverage;
102102
coverage = LCOV.readfolder(".");
103-
println("coverage");
103+
println(coverage);
104104
for cov in coverage
105105
cov.filename = replace(cov.filename, "\\" => "/")
106106
end;

0 commit comments

Comments
 (0)