Skip to content

Commit

Permalink
Don't specify patch versions for Ruby in the CI
Browse files Browse the repository at this point in the history
  • Loading branch information
santib committed Oct 25, 2023
1 parent 070e467 commit 95d35e2
Showing 1 changed file with 30 additions and 30 deletions.
60 changes: 30 additions & 30 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@ jobs:
strategy:
matrix:
ruby:
- 3.2.2
- 3.1.4
- 3.0.6
- 2.7.8
- 2.6.10
- 2.5.8
- '3.2'
- '3.1'
- '3.0'
- '2.7'
- '2.6'
- '2.5'
gemfile:
- rack_3
- rack_2
Expand All @@ -45,53 +45,53 @@ jobs:
- redis_store
exclude:
- gemfile: rack_1
ruby: 3.2.2
ruby: 3.2
- gemfile: rails_5_2
ruby: 3.2.2
ruby: 3.2
- gemfile: active_support_5_redis_cache_store
ruby: 3.2.2
ruby: 3.2
- gemfile: active_support_5_redis_cache_store_pooled
ruby: 3.2.2
ruby: 3.2
- gemfile: rails_4_2
ruby: 3.2.2
ruby: 3.2
- gemfile: dalli2
ruby: 3.2.2
ruby: 3.2
- gemfile: rack_1
ruby: 3.1.4
ruby: 3.1
- gemfile: rails_5_2
ruby: 3.1.4
ruby: 3.1
- gemfile: active_support_5_redis_cache_store
ruby: 3.1.4
ruby: 3.1
- gemfile: active_support_5_redis_cache_store_pooled
ruby: 3.1.4
ruby: 3.1
- gemfile: rails_4_2
ruby: 3.1.4
ruby: 3.1
- gemfile: dalli2
ruby: 3.1.4
ruby: 3.1
- gemfile: rack_1
ruby: 3.0.6
ruby: 3.0
- gemfile: rails_5_2
ruby: 3.0.6
ruby: 3.0
- gemfile: active_support_5_redis_cache_store
ruby: 3.0.6
ruby: 3.0
- gemfile: active_support_5_redis_cache_store_pooled
ruby: 3.0.6
ruby: 3.0
- gemfile: rails_4_2
ruby: 3.0.6
ruby: 3.0
- gemfile: dalli2
ruby: 3.0.6
ruby: 3.0
- gemfile: rack_1
ruby: 2.7.8
ruby: 2.7
- gemfile: rails_4_2
ruby: 2.7.8
ruby: 2.7
- gemfile: rails_7_0
ruby: 2.6.10
ruby: 2.6
- gemfile: rails_7_0
ruby: 2.5.8
ruby: 2.5
- gemfile: rails_7_1
ruby: 2.6.10
ruby: 2.6
- gemfile: rails_7_1
ruby: 2.5.8
ruby: 2.5
env:
BUNDLE_GEMFILE: gemfiles/${{ matrix.gemfile }}.gemfile
steps:
Expand Down

0 comments on commit 95d35e2

Please sign in to comment.