Skip to content

Commit

Permalink
Merge ea04736 into 43f2ec1
Browse files Browse the repository at this point in the history
  • Loading branch information
devmotion committed Nov 17, 2021
2 parents 43f2ec1 + ea04736 commit 7cb1315
Showing 1 changed file with 10 additions and 8 deletions.
18 changes: 10 additions & 8 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,15 @@ jobs:
- 'nightly'
os:
- ubuntu-latest
- macOS-latest
- windows-latest
arch:
- x64
include:
- version: '1'
os: ubuntu-latest
os: macOS-latest
arch: x64
- version: '1'
os: windows-latest
arch: x64
coverage: true
steps:
- uses: actions/checkout@v2
- uses: julia-actions/setup-julia@v1
Expand All @@ -46,14 +46,16 @@ jobs:
${{ runner.os }}-
- uses: julia-actions/julia-buildpkg@v1
- uses: julia-actions/julia-runtest@v1
with:
coverage: ${{ matrix.os == 'ubuntu-latest' && matrix.version == '1' }}
- uses: julia-actions/julia-processcoverage@v1
if: matrix.coverage
- uses: codecov/codecov-action@v1
if: matrix.coverage
if: matrix.os == 'ubuntu-latest' && matrix.version == '1'
- uses: codecov/codecov-action@v2
if: matrix.os == 'ubuntu-latest' && matrix.version == '1'
with:
file: lcov.info
- uses: coverallsapp/github-action@master
if: matrix.coverage
if: matrix.os == 'ubuntu-latest' && matrix.version == '1'
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
path-to-lcov: ./lcov.info

0 comments on commit 7cb1315

Please sign in to comment.