We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bcf4e96 commit 1344921Copy full SHA for 1344921
.github/workflows/Breakage.yml
@@ -37,6 +37,9 @@ jobs:
37
julia -e 'using Pkg; Pkg.Registry.add(RegistrySpec(url = "https://github.com/JuliaRegistries/General.git"))'
38
julia --project=.breakage -e 'using Pkg; Pkg.update(); Pkg.instantiate()'
39
pkgs=$(julia --project=.breakage .breakage/get_jso_users.jl ${{ env.pkg }})
40
+ if [[ -z "$pkgs" ]]; then
41
+ pkgs="[]"
42
+ fi
43
vs='["latest", "stable"]'
44
matrix=$(jq -cn --argjson deps "$pkgs" --argjson vers "$vs" '{pkg: $deps, pkgversion: $vers}') # don't escape quotes like many posts suggest
45
echo "matrix=$matrix" >> "$GITHUB_OUTPUT"
0 commit comments