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 b930c9d commit a86e651Copy full SHA for a86e651
.github/workflows/UnitTest.yml
@@ -48,6 +48,14 @@ jobs:
48
${{ runner.os }}-test-
49
${{ runner.os }}-
50
- 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}
59
- uses: julia-actions/julia-runtest@v1
60
- uses: julia-actions/julia-processcoverage@v1
61
- uses: codecov/codecov-action@v1
0 commit comments