Skip to content

Commit 378c172

Browse files
Update CI.yml
1 parent 771205e commit 378c172

1 file changed

Lines changed: 21 additions & 31 deletions

File tree

.github/workflows/CI.yml

Lines changed: 21 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -1,46 +1,36 @@
1-
name: CI
1+
name: Downgrade
22
on:
3+
pull_request:
4+
branches:
5+
- master
6+
paths-ignore:
7+
- 'docs/**'
38
push:
49
branches:
5-
- main
6-
tags: ['*']
7-
pull_request:
8-
concurrency:
9-
# Skip intermediate builds: always.
10-
# Cancel intermediate builds: only if it is a pull request build.
11-
group: ${{ github.workflow }}-${{ github.ref }}
12-
cancel-in-progress: ${{ startsWith(github.ref, 'refs/pull/') }}
10+
- master
11+
paths-ignore:
12+
- 'docs/**'
1313
jobs:
1414
test:
15-
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
16-
runs-on: ${{ matrix.os }}
15+
runs-on: ubuntu-latest
1716
strategy:
18-
fail-fast: false
1917
matrix:
20-
version:
21-
- 'lts'
22-
- '1'
23-
- 'pre'
24-
os:
25-
- ubuntu-latest
26-
arch:
27-
- x64
18+
group:
19+
- Core
20+
downgrade_mode: ['alldeps']
21+
julia-version: ['1.10']
2822
steps:
2923
- uses: actions/checkout@v4
3024
- uses: julia-actions/setup-julia@v2
3125
with:
32-
version: ${{ matrix.version }}
33-
arch: ${{ matrix.arch }}
34-
- uses: julia-actions/julia-downgrade-compat@v1
35-
if: ${{ matrix.version == '1.6' }}
26+
version: ${{ matrix.julia-version }}
27+
- uses: julia-actions/julia-downgrade-compat@v2
28+
# if: ${{ matrix.version == '1.6' }}
3629
with:
37-
skip: Pkg, TOML
38-
- uses: julia-actions/cache@v2
30+
skip: Pkg,TOML
3931
- uses: julia-actions/julia-buildpkg@v1
4032
- uses: julia-actions/julia-runtest@v1
41-
- uses: julia-actions/julia-processcoverage@v1
42-
- uses: codecov/codecov-action@v5
4333
with:
44-
files: lcov.info
45-
token: ${{ secrets.CODECOV_TOKEN }}
46-
fail_ci_if_error: false
34+
ALLOW_RERESOLVE: false
35+
env:
36+
GROUP: ${{ matrix.group }}

0 commit comments

Comments
 (0)