Skip to content

Commit d4e8753

Browse files
authored
Refactor/update ruby ci (#367)
* Updated CI workflows * Update dev dependency gems * Update todo file for rubocop fixes * updated changelog * Remove testing from 2.7 in CI to make life easier for gemspec resolution and CI confdig
1 parent 030b08c commit d4e8753

File tree

6 files changed

+115
-91
lines changed

6 files changed

+115
-91
lines changed

.github/workflows/release-rubygem.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
- uses: actions/checkout@v5
1414
- uses: ruby/setup-ruby@v1
1515
with:
16-
ruby-version: '3.3'
16+
ruby-version: '3.4'
1717
bundler-cache: true
1818
- uses: cucumber/[email protected]
1919
with:

.github/workflows/test-ruby.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,12 @@ jobs:
1717
matrix:
1818
os:
1919
- ubuntu-latest
20-
ruby: ['2.7', '3.0', '3.1', '3.2', '3.3']
20+
ruby: ['3.0', '3.1', '3.2', '3.3', '3.4', '3.5']
2121
include:
2222
- os: windows-latest
23-
ruby: '3.3'
23+
ruby: '3.4'
2424
- os: macos-latest
25-
ruby: '3.3'
25+
ruby: '3.4'
2626

2727
steps:
2828
- uses: actions/checkout@v5

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
77

88
## [Unreleased]
99
### Changed
10+
- [Ruby] Minor cosmetic / CI changes for development (Nothing front-facing)
1011
- [Python] PEP 639 licence metadata specification ([#361](https://github.com/cucumber/cucumber-expressions/pull/361))
1112

1213
## [18.0.1] - 2024-10-28

ruby/.rubocop.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Layout/LineLength:
2121
Max: 200
2222

2323
# This is documented in this spec to showcase why it's not working and people shouldn't use it
24-
# cf:
24+
# cf: https://github.com/cucumber/cucumber/issues/329
2525
Lint/MixedRegexpCaptureTypes:
2626
Exclude:
2727
- 'spec/cucumber/cucumber_expressions/tree_regexp_spec.rb'

0 commit comments

Comments
 (0)