File tree Expand file tree Collapse file tree 1 file changed +6
-10
lines changed Expand file tree Collapse file tree 1 file changed +6
-10
lines changed Original file line number Diff line number Diff line change 11name : CI
22on :
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
1613concurrency :
@@ -22,7 +19,7 @@ concurrency:
2219jobs :
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'
You can’t perform that action at this time.
0 commit comments