diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4ba01db..2358780 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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"), @@ -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]')"