Skip to content

Commit

Permalink
support Ruby 3
Browse files Browse the repository at this point in the history
  • Loading branch information
evgeni committed Jan 5, 2024
1 parent 5e28aae commit 261c79d
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
8 changes: 7 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,18 @@ on:
jobs:
test:
runs-on: ubuntu-20.04
strategy:
fail-fast: false
matrix:
ruby:
- "2.7"
- "3.0"
steps:
- uses: actions/checkout@v2
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 2.7
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Run Rubocop
run: bundle exec rubocop
Expand Down
2 changes: 1 addition & 1 deletion smart_proxy_container_gateway.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Gem::Specification.new do |s|
s.homepage = 'https://github.com/Katello/smart_proxy_container_gateway'
s.license = 'GPLv3'

s.required_ruby_version = '~> 2.7'
s.required_ruby_version = '>= 2.7'
s.add_dependency 'activesupport'
s.add_dependency 'sequel'
s.add_dependency 'sqlite3'
Expand Down

0 comments on commit 261c79d

Please sign in to comment.