Skip to content

Commit

Permalink
Remove official support for Ruby 2.5 and 2.6
Browse files Browse the repository at this point in the history
  • Loading branch information
markets committed Oct 8, 2024
1 parent 9bb7fc7 commit 31abf43
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
name: CI

on: [push]
on:
push:
branches: [master]
pull_request:
branches: [master]

jobs:
test:
Expand All @@ -9,7 +13,7 @@ jobs:
strategy:
fail-fast: false
matrix:
ruby-version: ["3.3", "3.2", "3.1", "3.0", "2.7", "2.6", "2.5"]
ruby-version: ["3.3", "3.2", "3.1", "3.0", "2.7"]
steps:
- uses: actions/checkout@v4
- name: Set up Ruby
Expand Down
4 changes: 2 additions & 2 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@ gem 'yard', '~> 0.9', require: false
# Test tools
gem 'aruba', '~> 1.0', require: false
gem 'capybara', '~> 3', require: false
gem 'cucumber', '~> 3.0', require: false
gem 'cucumber', require: false
gem 'rspec', '~> 3.0', require: false
gem 'timecop', '~> 0.6', require: false

# Optional dependencies, included for tests
gem 'kramdown'
gem 'nokogiri', RUBY_VERSION < '2.6' ? '~> 1.12.0' : '>= 0', require: false
gem 'rack', '< 3'

# Code Quality
gem 'rubocop', require: false
Expand Down

0 comments on commit 31abf43

Please sign in to comment.