From 35e07ca46688dcdfdbbdfe7f65d1690e09c9fc45 Mon Sep 17 00:00:00 2001 From: t-bltg Date: Sun, 13 Oct 2024 18:11:03 +0200 Subject: [PATCH] upd cpovergae --- .github/workflows/ci.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f3491a3..4498371 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -45,6 +45,7 @@ jobs: run: | julia -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"), @@ -61,6 +62,14 @@ jobs: fi echo ${cmd[@]} ${cmd[@]} -e 'using Pkg; Pkg.test("GraphRecipes"; 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]')"