From b05726c2fad701647b4ddd3be5c903bed820dfa2 Mon Sep 17 00:00:00 2001 From: t-bltg Date: Sun, 13 Oct 2024 18:46:52 +0200 Subject: [PATCH] priority --- .github/workflows/ci.yml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 99810d8a4..def74d431 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -77,6 +77,12 @@ jobs: JULIA_PKG_PRECOMPILE_AUTO: 0 run: julia --color=yes ci/matplotlib.jl + - name: Test downstream packages + if: startsWith(matrix.os, 'ubuntu') + run: | + xvfb-run julia --color=yes ci/downstream.jl GraphRecipes + xvfb-run julia --color=yes ci/downstream.jl StatsPlots + - name: Test RecipesBase, RecipesPipeline, PlotsBase, Plots timeout-minutes: 60 run: | @@ -89,11 +95,6 @@ jobs: using Pkg foreach(name -> Pkg.test(name; coverage=true), ("RecipesBase", "RecipesPipeline", "PlotsBase", "Plots")) ' - - name: Test downstream packages - if: startsWith(matrix.os, 'ubuntu') - run: | - xvfb-run julia --color=yes ci/downstream.jl GraphRecipes - xvfb-run julia --color=yes ci/downstream.jl StatsPlots - uses: julia-actions/julia-processcoverage@latest if: startsWith(matrix.os, 'ubuntu')