Skip to content

Commit

Permalink
uodate ci.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
BeastyBlacksmith committed Jun 28, 2023
1 parent aa234f8 commit 516ad83
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,17 @@ jobs:
# with:
# prefix: ${{ matrix.prefix }} # for `xvfb-run`
- name: Run Plots.jl tests
shell: ${{ matrix.prefix }} julia --project=@. --color=yes {0}
if: startsWith(matrix.os, 'ubuntu')
shell: xvfb-run julia --project=@. --color=yes {0}
run: |
using Pkg
foreach(("RecipesBase", "RecipesPipeline")) do name
Pkg.develop(path=name)
end
Pkg.test(; coverage=true)
- name: Run Plots.jl tests
if: !startsWith(matrix.os, 'ubuntu')
shell: julia --project=@. --color=yes {0}
run: |
using Pkg
foreach(("RecipesBase", "RecipesPipeline")) do name
Expand Down

0 comments on commit 516ad83

Please sign in to comment.