Skip to content

Commit b016d54

Browse files
committed
Update test workflow to use local version of test utils
1 parent a409148 commit b016d54

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

.github/workflows/CI.yml

+8-2
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,14 @@ jobs:
3838
${{ runner.os }}-test-${{ env.cache-name }}-
3939
${{ runner.os }}-test-
4040
${{ runner.os }}-
41-
- uses: julia-actions/julia-buildpkg@v1
42-
- uses: julia-actions/julia-runtest@v1
41+
- uses: julia-actions/julia-buildpkg@latest
42+
- 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)
4349
- uses: julia-actions/julia-processcoverage@v1
4450
- uses: codecov/codecov-action@v1
4551
with:

0 commit comments

Comments
 (0)