Update Github actions CI (#181)

This commit is contained in:
Eric Hanson 2020-06-03 17:36:53 +01:00 committed by GitHub
parent 765d2db0e6
commit 6db8ffdefc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 6 deletions

View File

@ -49,9 +49,10 @@ jobs:
- uses: julia-actions/julia-buildpkg@latest - uses: julia-actions/julia-buildpkg@latest
- uses: julia-actions/julia-runtest@latest - uses: julia-actions/julia-runtest@latest
<<#HAS_CODECOV>> <<#HAS_CODECOV>>
- uses: julia-actions/julia-uploadcodecov@latest - uses: julia-actions/julia-processcoverage@v1
env: - uses: codecov/codecov-action@v1
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} with:
file: lcov.info
<</HAS_CODECOV>> <</HAS_CODECOV>>
<<#HAS_COVERALLS>> <<#HAS_COVERALLS>>
- uses: julia-actions/julia-uploadcoveralls@latest - uses: julia-actions/julia-uploadcoveralls@latest

View File

@ -36,9 +36,10 @@ jobs:
${{ runner.os }}- ${{ runner.os }}-
- uses: julia-actions/julia-buildpkg@latest - uses: julia-actions/julia-buildpkg@latest
- uses: julia-actions/julia-runtest@latest - uses: julia-actions/julia-runtest@latest
- uses: julia-actions/julia-uploadcodecov@latest - uses: julia-actions/julia-processcoverage@v1
env: - uses: codecov/codecov-action@v1
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} with:
file: lcov.info
- uses: julia-actions/julia-uploadcoveralls@latest - uses: julia-actions/julia-uploadcoveralls@latest
env: env:
COVERALLS_TOKEN: ${{ secrets.COVERALLS_TOKEN }} COVERALLS_TOKEN: ${{ secrets.COVERALLS_TOKEN }}