Skip to content

Commit

Permalink
Update build
Browse files Browse the repository at this point in the history
  • Loading branch information
jaynetics committed Jan 3, 2024
1 parent d59e032 commit d1b53e2
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/gouteur.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 2.7
ruby-version: 3.3
- name: Prepare
run: |
bundle install --jobs 4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 2.7
ruby-version: 3.3
- name: Cache gems
uses: actions/cache@v1
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:

strategy:
matrix:
ruby: [ '2.3', '2.7', '3.0', '3.1', 'ruby-head', 'jruby-head' ]
ruby: [ '2.3', '2.7', '3.0', '3.1', '3.3', 'ruby-head', 'jruby-head' ]

steps:
- uses: actions/checkout@v2
Expand All @@ -25,4 +25,4 @@ jobs:
- name: Test with Rake
run: bundle exec rake
- uses: codecov/codecov-action@v3
if: matrix.ruby == '2.7'
if: matrix.ruby == '3.3'
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ gem 'range_compressor', '~> 1.0'
gem 'regexp_parser', '~> 2.1'
gem 'regexp_property_values', '~> 1.0'
gem 'rspec', '~> 3.8'
if RUBY_VERSION.to_f >= 2.7
if RUBY_VERSION.to_f >= 3.0
gem 'gouteur', '~> 1.0.0'
gem 'rubocop', '~> 1.8'
gem 'simplecov-cobertura'
Expand Down
2 changes: 1 addition & 1 deletion spec/spec_helper.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
if ENV['CI'] && RUBY_VERSION.start_with?('2.7')
if ENV['CI'] && RUBY_VERSION.start_with?('3.3')
require 'simplecov'
require 'simplecov-cobertura'
SimpleCov.formatter = SimpleCov::Formatter::CoberturaFormatter
Expand Down

0 comments on commit d1b53e2

Please sign in to comment.