Skip to content

Commit 2b8a763

Browse files
fix CI script
1 parent 88012c2 commit 2b8a763

File tree

1 file changed

+6
-8
lines changed

1 file changed

+6
-8
lines changed

.github/workflows/CI.yml

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,18 @@ name: CI
22
on:
33
pull_request:
44
branches:
5-
- main
5+
- master
66
push:
77
branches:
8-
- main
8+
- master
99
jobs:
1010
test:
1111
runs-on: ubuntu-latest
1212
strategy:
13+
fail-fast: false
1314
matrix:
1415
group:
15-
- All
16+
- Core
1617
- LinearSolvePardiso
1718
version:
1819
- '1'
@@ -25,7 +26,6 @@ jobs:
2526
- uses: actions/cache@v1
2627
env:
2728
cache-name: cache-artifacts
28-
GROUP: ${{ matrix.group }}
2929
with:
3030
path: ~/.julia/artifacts
3131
key: ${{ runner.os }}-test-${{ env.cache-name }}-${{ hashFiles('**/Project.toml') }}
@@ -35,11 +35,9 @@ jobs:
3535
${{ runner.os }}-
3636
- uses: julia-actions/julia-buildpkg@v1
3737
- uses: julia-actions/julia-runtest@v1
38+
env:
39+
GROUP: ${{ matrix.group }}
3840
- uses: julia-actions/julia-processcoverage@v1
3941
- uses: codecov/codecov-action@v1
4042
with:
4143
file: lcov.info
42-
- uses: coverallsapp/github-action@master
43-
with:
44-
github-token: ${{ secrets.GITHUB_TOKEN }}
45-
path-to-lcov: ./lcov.info

0 commit comments

Comments
 (0)