Skip to content

Commit 1166e6b

Browse files
committed
update CI
1 parent 690f754 commit 1166e6b

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

.github/workflows/CI.yml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,18 @@
11
name: CI
2+
23
on:
34
push:
45
branches:
56
- main
67
tags: ['*']
78
pull_request:
9+
810
concurrency:
911
# Skip intermediate builds: always.
1012
# Cancel intermediate builds: only if it is a pull request build.
1113
group: ${{ github.workflow }}-${{ github.ref }}
1214
cancel-in-progress: ${{ startsWith(github.ref, 'refs/pull/') }}
15+
1316
jobs:
1417
test:
1518
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
@@ -19,17 +22,17 @@ jobs:
1922
matrix:
2023
version:
2124
- '1'
22-
- '1.10'
25+
- 'min'
2326
os:
2427
- ubuntu-latest
2528
arch:
2629
- x64
2730
steps:
28-
- uses: actions/checkout@v3
29-
- uses: julia-actions/setup-julia@v1
31+
- uses: actions/checkout@v4
32+
- uses: julia-actions/setup-julia@v2
3033
with:
3134
version: ${{ matrix.version }}
3235
arch: ${{ matrix.arch }}
33-
- uses: julia-actions/cache@v1
36+
- uses: julia-actions/cache@v2
3437
- uses: julia-actions/julia-buildpkg@v1
3538
- uses: julia-actions/julia-runtest@v1

0 commit comments

Comments
 (0)