Skip to content

Commit 7a87b98

Browse files
authored
Update ci.yml
1 parent 4c9e62b commit 7a87b98

File tree

1 file changed

+9
-12
lines changed

1 file changed

+9
-12
lines changed

.github/workflows/ci.yml

Lines changed: 9 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,9 @@
11
name: CI
22
on:
33
push:
4-
branches: [main]
4+
branches: [main, master]
55
tags: ["*"]
66
pull_request:
7-
concurrency:
8-
group: ${{ github.workflow }}-${{ github.ref || github.run_id }}
9-
cancel-in-progress: true
107
jobs:
118
test:
129
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
@@ -15,19 +12,18 @@ jobs:
1512
fail-fast: false
1613
matrix:
1714
version:
18-
- '1.9'
1915
- '1' # automatically expands to the latest stable 1.x release of Julia
20-
- nightly
16+
- 'min'
17+
- 'pre'
2118
os:
2219
- ubuntu-latest
23-
- macOS-latest
2420
- windows-latest
2521
arch:
2622
- x64
2723
include:
28-
- os: windows-latest
29-
version: '1'
30-
arch: x86
24+
- os: macOS-latest
25+
arch: aarch64
26+
version: 1
3127
steps:
3228
- uses: actions/checkout@v4
3329
- uses: julia-actions/setup-julia@v2
@@ -38,9 +34,10 @@ jobs:
3834
- uses: julia-actions/julia-buildpkg@v1
3935
- uses: julia-actions/julia-runtest@v1
4036
- uses: julia-actions/julia-processcoverage@v1
41-
- uses: codecov/codecov-action@v1
37+
- uses: codecov/codecov-action@v5
4238
with:
43-
file: lcov.info
39+
files: lcov.info
40+
token: ${{ secrets.CODECOV_TOKEN }}
4441
docs:
4542
name: Documentation
4643
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)