We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a409148 commit b016d54Copy full SHA for b016d54
.github/workflows/CI.yml
@@ -38,8 +38,14 @@ jobs:
38
${{ runner.os }}-test-${{ env.cache-name }}-
39
${{ runner.os }}-test-
40
${{ runner.os }}-
41
- - uses: julia-actions/julia-buildpkg@v1
42
- - uses: julia-actions/julia-runtest@v1
+ - uses: julia-actions/julia-buildpkg@latest
+ - name: Run tests
43
+ shell: julia --color=yes --project=. {0}
44
+ run: |
45
+ using Pkg
46
+ # force it to use this PR's version of the test utilities subpackage
47
+ Pkg.develop(PackageSpec(path=joinpath(".", "lib", "AbstractFFTsTestUtils")))
48
+ Pkg.test(coverage=true)
49
- uses: julia-actions/julia-processcoverage@v1
50
- uses: codecov/codecov-action@v1
51
with:
0 commit comments