From 679fe7abcf4e6117598f7d3715fbb9aabd02e2e2 Mon Sep 17 00:00:00 2001 From: Gaurav Arya Date: Wed, 15 Mar 2023 17:37:02 -0400 Subject: [PATCH] Update test workflow to use local version of test utils --- .github/workflows/CI.yml | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 1444ca5..b453a74 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -38,8 +38,15 @@ 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=".")) + Pkg.develop(PackageSpec(path=joinpath(".", "lib", "AbstractFFTsTestUtils"))) + Pkg.test(coverage=true) - uses: julia-actions/julia-processcoverage@v1 - uses: codecov/codecov-action@v1 with: