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 679fe7a
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 679fe7a

Please sign in to comment.