Skip to content

Commit 1301c6e

Browse files
authored
Work around upstream issue by running benchmarks only on Julia LTS for now (#1201)
1 parent 3e4f8cd commit 1301c6e

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.github/workflows/benchmark_pr.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,15 @@ permissions:
1010
jobs:
1111
bench:
1212
runs-on: ubuntu-latest
13+
strategy:
14+
matrix:
15+
julia:
16+
- 'lts'
17+
# TODO: Enable when https://github.com/MilesCranmer/AirspeedVelocity.jl/issues/113 is fixed
18+
# - '1'
1319
steps:
1420
- uses: MilesCranmer/AirspeedVelocity.jl@action-v1
1521
with:
16-
julia-version: '1'
22+
julia-version: '${{ matrix.julia }}'
1723
enable-plots: true
1824
exeflags: '-O3 --threads=auto'

0 commit comments

Comments
 (0)