Skip to content

Commit c10b3d1

Browse files
authored
Update ci.yml
1 parent 4f82df5 commit c10b3d1

File tree

1 file changed

+0
-54
lines changed

1 file changed

+0
-54
lines changed

.github/workflows/ci.yml

Lines changed: 0 additions & 54 deletions
Original file line numberDiff line numberDiff line change
@@ -52,57 +52,3 @@ jobs:
5252
with:
5353
file: lcov.info
5454
token: ${{ secrets.CODECOV_TOKEN }}
55-
name: CI
56-
on:
57-
push:
58-
branches:
59-
- main
60-
- release-*
61-
pull_request:
62-
types: [opened, synchronize, reopened]
63-
concurrency:
64-
# Skip intermediate builds: always.
65-
# Cancel intermediate builds: only if it is a pull request build.
66-
group: ${{ github.workflow }}-${{ github.ref }}
67-
cancel-in-progress: ${{ startsWith(github.ref, 'refs/pull/') }}
68-
# needed to allow julia-actions/cache to delete old caches that it has created
69-
permissions:
70-
actions: write
71-
contents: read
72-
jobs:
73-
test:
74-
name: Julia ${{ matrix.version }} - ${{ matrix.os }}-${{ matrix.arch }}
75-
runs-on: ${{ matrix.os }}
76-
strategy:
77-
fail-fast: false
78-
matrix:
79-
include:
80-
- version: 'nightly'
81-
os: ubuntu-latest
82-
arch: x64
83-
- version: '1.10'
84-
os: ubuntu-latest
85-
arch: x64
86-
- version: '1'
87-
os: ubuntu-latest
88-
arch: x64
89-
- version: '1'
90-
os: windows-latest
91-
arch: x64
92-
- version: '1'
93-
os: ubuntu-latest
94-
arch: x86
95-
steps:
96-
- uses: actions/checkout@v4
97-
- uses: julia-actions/setup-julia@v2
98-
with:
99-
version: ${{ matrix.version }}
100-
arch: ${{ matrix.arch }}
101-
- uses: julia-actions/cache@v1
102-
- uses: julia-actions/julia-buildpkg@v1
103-
- uses: julia-actions/julia-runtest@v1
104-
- uses: julia-actions/julia-processcoverage@v1
105-
- uses: codecov/codecov-action@v4
106-
with:
107-
file: lcov.info
108-
token: ${{ secrets.CODECOV_TOKEN }}

0 commit comments

Comments
 (0)