Skip to content

Commit 5dceb03

Browse files
committed
Update CI checkout action
Also, remove the dependency downgrade step as this package has no external dependencies to modify, and then make tweaks to syntax to be consistent with other packages.
1 parent 391cad4 commit 5dceb03

File tree

1 file changed

+6
-10
lines changed

1 file changed

+6
-10
lines changed

.github/workflows/CI.yml

Lines changed: 6 additions & 10 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,7 +19,7 @@ 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
@@ -36,26 +33,25 @@ jobs:
3633
arch:
3734
- x64
3835
steps:
39-
- uses: actions/checkout@v4
36+
- uses: actions/checkout@v5
4037
- uses: julia-actions/setup-julia@v2
4138
with:
4239
version: ${{ matrix.version }}
4340
arch: ${{ matrix.arch }}
4441
- uses: julia-actions/cache@v2
45-
- uses: julia-actions/julia-downgrade-compat@v1
46-
if: ${{ contains(fromJSON('["min"]'), matrix.version) }}
4742
- uses: julia-actions/julia-buildpkg@v1
4843
- uses: julia-actions/julia-runtest@v1
4944
- uses: julia-actions/julia-processcoverage@v1
5045
- uses: codecov/codecov-action@v5
5146
with:
5247
token: ${{ secrets.CODECOV_TOKEN }}
5348
file: lcov.info
49+
5450
docs:
5551
name: Documentation
5652
runs-on: ubuntu-latest
5753
steps:
58-
- uses: actions/checkout@v4
54+
- uses: actions/checkout@v5
5955
- uses: julia-actions/setup-julia@v2
6056
with:
6157
version: '1'

0 commit comments

Comments
 (0)