Skip to content

Commit d1ddf7c

Browse files
ozennoubyroot
authored andcommitted
Update CI configuration
- Ignore *.md files from the CI pipeline and remove a useless strategy block because the job does not use a matrix strategy - Add Ruby 3.4 to the CI matrix - Update JRuby for Ubuntu 24.04 compatibility.
1 parent 3669beb commit d1ddf7c

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

.github/workflows/test.yaml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,13 @@ on:
44
push:
55
branches:
66
- "*"
7+
paths-ignore:
8+
- '**/*.md'
79
pull_request:
810
branches:
911
- "*"
12+
paths-ignore:
13+
- '**/*.md'
1014
jobs:
1115
lint:
1216
name: Rubocop
@@ -29,7 +33,7 @@ jobs:
2933
strategy:
3034
fail-fast: false
3135
matrix:
32-
ruby: ["3.3", "3.2", "3.1", "3.0", "2.7", "2.6", "jruby-9.3.6.0"]
36+
ruby: ["3.4", "3.3", "3.2", "3.1", "3.0", "2.7", "2.6", "jruby"]
3337
runs-on: ubuntu-latest
3438
env:
3539
LOW_TIMEOUT: "0.01"
@@ -178,8 +182,6 @@ jobs:
178182
sentinel:
179183
name: Sentinel
180184
timeout-minutes: 15
181-
strategy:
182-
fail-fast: false
183185
runs-on: ubuntu-latest
184186
env:
185187
LOW_TIMEOUT: "0.14"

0 commit comments

Comments
 (0)