Skip to content

Commit

Permalink
Update test workflow to use local version of test utils
Browse files Browse the repository at this point in the history
  • Loading branch information
gaurav-arya committed Mar 15, 2023
1 parent a409148 commit b016d54
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit b016d54

Please sign in to comment.