Skip to content

Commit

Permalink
CI compatibility fix for Julia < 1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
johnnychen94 committed Oct 11, 2021
1 parent e10f49c commit f49ef3d
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/UnitTest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,14 @@ jobs:
${{ runner.os }}-test-
${{ runner.os }}-
- uses: julia-actions/julia-buildpkg@v1
- name: "Compat fix for Julia < v1.3.0"
if: ${{ matrix.julia-version == '1.0' }}
run: |
using Pkg
Pkg.add([
PackageSpec(name="AbstractFFTs", version="0.5"),
])
shell: julia --project=. --startup=no --color=yes {0}
- uses: julia-actions/julia-runtest@v1
- uses: julia-actions/julia-processcoverage@v1
- uses: codecov/codecov-action@v1
Expand Down

0 comments on commit f49ef3d

Please sign in to comment.