Skip to content

Commit

Permalink
fix cov (#559)
Browse files Browse the repository at this point in the history
  • Loading branch information
t-bltg authored Oct 13, 2024
1 parent 76d8e49 commit 0e48362
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ jobs:
run: |
julia --color=yes -e '
using Pkg
# NOTE: remove on Plots v2 release
Pkg.add([
(; url="https://github.com/JuliaPlots/Plots.jl", subdir="RecipesBase", rev="v2"),
(; url="https://github.com/JuliaPlots/Plots.jl", subdir="RecipesPipeline", rev="v2"),
Expand All @@ -60,8 +61,12 @@ jobs:
echo ${cmd[@]}
${cmd[@]} -e 'using Pkg; Pkg.test("StatsPlots"; coverage=true)'
- uses: julia-actions/julia-processcoverage@latest
if: startsWith(matrix.os, 'ubuntu')
- uses: codecov/codecov-action@v4
if: startsWith(matrix.os, 'ubuntu')
with:
token: ${{ secrets.CODECOV_TOKEN }}
fail_ci_if_error: false
file: lcov.info
Skip:
if: "contains(github.event.head_commit.message, '[skip ci]')"
Expand Down

0 comments on commit 0e48362

Please sign in to comment.