diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 1444ca5..717c454 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -38,8 +38,14 @@ jobs: ${{ runner.os }}-test-${{ env.cache-name }}- ${{ runner.os }}-test- ${{ runner.os }}- - - uses: julia-actions/julia-buildpkg@v1 - - uses: julia-actions/julia-runtest@v1 + - uses: julia-actions/julia-buildpkg@latest + - name: Run tests + shell: julia --color=yes --project=. {0} + run: | + using Pkg + # force it to use this PR's version of the test utilities subpackage + Pkg.develop(PackageSpec(path=joinpath(".", "lib", "AbstractFFTsTestUtils"))) + Pkg.test(coverage=true) - uses: julia-actions/julia-processcoverage@v1 - uses: codecov/codecov-action@v1 with: