Skip to content

Commit a86e651

Browse files
committed
CI compatibility fix for Julia < 1.3
1 parent b930c9d commit a86e651

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

.github/workflows/UnitTest.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,14 @@ jobs:
4848
${{ runner.os }}-test-
4949
${{ runner.os }}-
5050
- uses: julia-actions/julia-buildpkg@v1
51+
- name: "Compat fix for Julia < v1.3.0"
52+
if: ${{ matrix.version == '1.0' }}
53+
run: |
54+
using Pkg
55+
Pkg.add([
56+
PackageSpec(name="AbstractFFTs", version="0.5"),
57+
])
58+
shell: julia --project=. --startup=no --color=yes {0}
5159
- uses: julia-actions/julia-runtest@v1
5260
- uses: julia-actions/julia-processcoverage@v1
5361
- uses: codecov/codecov-action@v1

0 commit comments

Comments
 (0)