Skip to content

Commit

Permalink
Merge pull request #21 from yuehhua/develop
Browse files Browse the repository at this point in the history
Update ci
  • Loading branch information
yuehhua authored Dec 1, 2020
2 parents 1a78706 + be31a20 commit 28ae937
Showing 1 changed file with 6 additions and 19 deletions.
25 changes: 6 additions & 19 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,43 +6,28 @@ jobs:
test:
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
runs-on: ${{ matrix.os }}
continue-on-error: ${{ matrix.nightly }}
strategy:
fail-fast: false
matrix:
version:
- '1.5'
- 'nightly'
os:
- ubuntu-latest
- macOS-latest
- windows-latest
arch:
- x64
- x86
nightly: [false]
include:
- version: 'nightly'
os: ubuntu-latest
arch: x64
nightly: true
- version: 'nightly'
os: macOS-latest
arch: x64
nightly: true
- version: 'nightly'
os: windows-latest
arch: x64
nightly: true
exclude:
- os: macOS-latest
arch: x86
steps:
- uses: actions/checkout@v2
continue-on-error: ${{ matrix.julia-version == 'nightly' }}
- uses: julia-actions/setup-julia@v1
continue-on-error: ${{ matrix.julia-version == 'nightly' }}
with:
version: ${{ matrix.version }}
arch: ${{ matrix.arch }}
- uses: actions/cache@v1
continue-on-error: ${{ matrix.julia-version == 'nightly' }}
env:
cache-name: cache-artifacts
with:
Expand All @@ -53,7 +38,9 @@ jobs:
${{ runner.os }}-test-
${{ runner.os }}-
- uses: julia-actions/julia-buildpkg@v1
continue-on-error: ${{ matrix.julia-version == 'nightly' }}
- uses: julia-actions/julia-runtest@v1
continue-on-error: ${{ matrix.julia-version == 'nightly' }}
- uses: julia-actions/julia-processcoverage@v1
- uses: codecov/codecov-action@v1
with:
Expand Down

0 comments on commit 28ae937

Please sign in to comment.