File tree Expand file tree Collapse file tree 1 file changed +12
-0
lines changed Expand file tree Collapse file tree 1 file changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -22,17 +22,29 @@ jobs:
2222
2323 steps :
2424 - uses : actions/checkout@v5
25+
2526 - uses : julia-actions/setup-julia@v2
2627 with :
2728 version : 1
29+
2830 - uses : julia-actions/julia-buildpkg@v1
31+
2932 - name : Clone Downstream
3033 uses : actions/checkout@v5
3134 with :
3235 repository : ${{ matrix.package.user }}/${{ matrix.package.repo }}
3336 path : downstream
37+
38+ - name : Determine Julia version
39+ shell : bash
40+ id : julia-version
41+ run : |
42+ echo "julia=$(julia --version | cut -d' ' -f3)" >> $GITHUB_OUTPUT
43+
3444 - name : Load this and run the downstream tests
3545 shell : julia --color=yes --project=downstream {0}
46+ # Don't test Turing.jl on 1.12.0, it's broken because of Libtask
47+ if : ${{ !(steps.julia-version.outputs.julia == '1.12.0' && matrix.package.repo == 'Turing.jl') }}
3648 run : |
3749 using Pkg
3850 try
You can’t perform that action at this time.
0 commit comments