Skip to content
This repository was archived by the owner on Aug 22, 2025. It is now read-only.

Commit 5982e43

Browse files
committed
update workflows
1 parent c2bbf98 commit 5982e43

1 file changed

Lines changed: 17 additions & 5 deletions

File tree

.github/workflows/CI.yml

Lines changed: 17 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,26 @@ name: CI
22
on:
33
pull_request:
44
branches:
5-
- master
5+
- main
66
push:
77
branches:
8-
- master
8+
- main
99
jobs:
1010
test:
1111
runs-on: ubuntu-latest
12+
strategy:
13+
fail-fast: false
14+
matrix:
15+
version:
16+
- '1'
17+
- '~1.6' # Current LTS
18+
- '*' # Latest Release
19+
- '^1.9.0-0'
1220
steps:
1321
- uses: actions/checkout@v2
1422
- uses: julia-actions/setup-julia@v1
1523
with:
16-
version: 1
24+
version: ${{ matrix.version }}
1725
- uses: actions/cache@v1
1826
env:
1927
cache-name: cache-artifacts
@@ -26,7 +34,11 @@ jobs:
2634
${{ runner.os }}-
2735
- uses: julia-actions/julia-buildpkg@v1
2836
- uses: julia-actions/julia-runtest@v1
37+
env:
38+
GROUP: ${{ matrix.group }}
2939
- uses: julia-actions/julia-processcoverage@v1
30-
- uses: codecov/codecov-action@v1
3140
with:
32-
file: lcov.info
41+
directories: src,ext
42+
- uses: codecov/codecov-action@v3
43+
with:
44+
files: lcov.info

0 commit comments

Comments
 (0)