Skip to content

Commit 24ca303

Browse files
authored
Update CI.yml (#32)
1 parent a42a6e1 commit 24ca303

1 file changed

Lines changed: 5 additions & 27 deletions

File tree

.github/workflows/CI.yml

Lines changed: 5 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
fail-fast: false
2121
matrix:
2222
version:
23-
- "1.6" # LTS
23+
- "min" # Minimum supported version
2424
- "1" # Latest Release
2525
os:
2626
- ubuntu-latest
@@ -35,40 +35,18 @@ jobs:
3535
arch: x86
3636
- os: windows-latest
3737
arch: x86
38-
include:
39-
# Add specific version used to run the reference tests.
40-
# Must be kept in sync with version check in `test/runtests.jl`,
41-
# and with the branch protection rules on the repository which
42-
# require this specific job to pass on all PRs
43-
# (see Settings > Branches > Branch protection rules).
44-
- os: ubuntu-latest
45-
version: 1.10.6
46-
arch: x64
4738
steps:
4839
- uses: actions/checkout@v5
4940
- uses: julia-actions/setup-julia@v2
5041
with:
5142
version: ${{ matrix.version }}
5243
arch: ${{ matrix.arch }}
53-
- uses: actions/cache@v4
54-
env:
55-
cache-name: cache-artifacts
56-
with:
57-
path: ~/.julia/artifacts
58-
key: ${{ runner.os }}-${{ matrix.arch }}-test-${{ env.cache-name }}-${{ hashFiles('**/Project.toml') }}
59-
restore-keys: |
60-
${{ runner.os }}-${{ matrix.arch }}-test-${{ env.cache-name }}-
61-
${{ runner.os }}-${{ matrix.arch }}-test-
62-
${{ runner.os }}-${{ matrix.arch }}-
63-
${{ runner.os }}-
64-
- uses: julia-actions/julia-buildpkg@latest
65-
- run: |
66-
git config --global user.name Tester
67-
git config --global user.email te@st.er
68-
- uses: julia-actions/julia-runtest@latest
44+
- uses: julia-actions/cache@v2
45+
- uses: julia-actions/julia-buildpkg@v1
46+
- uses: julia-actions/julia-runtest@v1
6947
- uses: julia-actions/julia-processcoverage@v1
7048
- uses: codecov/codecov-action@v5
7149
with:
72-
files: lcov.info
50+
file: lcov.info
7351
token: ${{ secrets.CODECOV_TOKEN }}
7452
fail_ci_if_error: false

0 commit comments

Comments
 (0)