Skip to content

Commit

Permalink
Update CI configuration
Browse files Browse the repository at this point in the history
- 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.
  • Loading branch information
ozennou authored and byroot committed Jan 16, 2025
1 parent 3669beb commit d1ddf7c
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,13 @@ on:
push:
branches:
- "*"
paths-ignore:
- '**/*.md'
pull_request:
branches:
- "*"
paths-ignore:
- '**/*.md'
jobs:
lint:
name: Rubocop
Expand All @@ -29,7 +33,7 @@ jobs:
strategy:
fail-fast: false
matrix:
ruby: ["3.3", "3.2", "3.1", "3.0", "2.7", "2.6", "jruby-9.3.6.0"]
ruby: ["3.4", "3.3", "3.2", "3.1", "3.0", "2.7", "2.6", "jruby"]
runs-on: ubuntu-latest
env:
LOW_TIMEOUT: "0.01"
Expand Down Expand Up @@ -178,8 +182,6 @@ jobs:
sentinel:
name: Sentinel
timeout-minutes: 15
strategy:
fail-fast: false
runs-on: ubuntu-latest
env:
LOW_TIMEOUT: "0.14"
Expand Down

0 comments on commit d1ddf7c

Please sign in to comment.