Skip to content

Commit ff3d65a

Browse files
committed
Update CI checkout action
...and make tweaks to syntax to be consistent with other packages.
1 parent 9e04690 commit ff3d65a

File tree

1 file changed

+7
-9
lines changed

1 file changed

+7
-9
lines changed

.github/workflows/CI.yml

Lines changed: 7 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,13 @@
11
name: CI
22
on:
33
push:
4-
branches:
5-
- 'master'
6-
tags: '*'
4+
branches: ['master']
5+
tags: ['*']
76
paths-ignore:
87
- 'README.md'
9-
- '.github/workflows/**'
108
pull_request:
119
paths-ignore:
1210
- 'README.md'
13-
- '.github/workflows/**'
1411
workflow_dispatch:
1512

1613
concurrency:
@@ -22,13 +19,13 @@ concurrency:
2219
jobs:
2320
test:
2421
if: "!contains(github.event.head_commit.message, 'skip ci')"
25-
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }}
22+
name: Tests
2623
runs-on: ${{ matrix.os }}
2724
strategy:
2825
fail-fast: false
2926
matrix:
3027
version:
31-
- '1.0' # earliest supported
28+
- 'min' # earliest supported
3229
- '1' # latest release
3330
- 'nightly'
3431
os:
@@ -41,19 +38,20 @@ jobs:
4138
- os: macOS-latest
4239
arch: x86
4340
steps:
44-
- uses: actions/checkout@v4
41+
- uses: actions/checkout@v5
4542
- uses: julia-actions/setup-julia@v2
4643
with:
4744
version: ${{ matrix.version }}
4845
arch: ${{ matrix.arch }}
4946
- uses: julia-actions/cache@v2
5047
- uses: julia-actions/julia-buildpkg@v1
5148
- uses: julia-actions/julia-runtest@v1
49+
5250
docs:
5351
name: Documentation
5452
runs-on: ubuntu-latest
5553
steps:
56-
- uses: actions/checkout@v4
54+
- uses: actions/checkout@v5
5755
- uses: julia-actions/setup-julia@v2
5856
with:
5957
version: '1'

0 commit comments

Comments
 (0)