Skip to content

Commit

Permalink
Add support for Ruby 3.3
Browse files Browse the repository at this point in the history
  • Loading branch information
ekmartin committed Dec 28, 2023
1 parent 7204f22 commit 26312ea
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 1 deletion.
7 changes: 7 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,3 +41,10 @@ jobs:
- uses: actions/checkout@v3
- run: docker-compose build rspec-3.2
- run: docker-compose run rspec-3.2

build-3-3:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: docker-compose build rspec-3.3
- run: docker-compose run rspec-3.3
8 changes: 8 additions & 0 deletions docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,3 +35,11 @@ services:
volumes:
- .:/app
entrypoint: bundle exec rspec
rspec-3.3:
build:
context: .
args:
BASE_IMAGE: ruby:3.3
volumes:
- .:/app
entrypoint: bundle exec rspec
2 changes: 1 addition & 1 deletion k8s-ruby.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Gem::Specification.new do |spec|
spec.bindir = "bin"
spec.executables = []
spec.require_paths = ["lib"]
spec.required_ruby_version = spec.required_ruby_version = [">= 2.4", "<= 3.2.2"]
spec.required_ruby_version = [">= 2.4", "< 3.4"]

spec.add_runtime_dependency "excon", "~> 0.71"
spec.add_runtime_dependency "dry-struct"
Expand Down

0 comments on commit 26312ea

Please sign in to comment.