Skip to content

Commit

Permalink
Use a specific gemfile for Ruby 3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
gael-ian committed Nov 25, 2024
1 parent e52d408 commit 77ed7c7
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,10 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
ruby: ["3.0", "3.1", "3.2", "3.3"]
ruby: ["3.1", "3.2", "3.3"]
include:
- ruby: "3.0"
gemfile: dev/gemfiles/ruby-3.0.x.gemfile
steps:
- name: Checkout repository
uses: actions/checkout@v3
Expand Down
18 changes: 18 additions & 0 deletions dev/gemfiles/ruby-3.0.x.gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# frozen_string_literal: true

source 'https://rubygems.org'

group :plugins do
# `vagrant-bindfs` (and other plugins that it may depends on) must be in this
# :plugins group to be correcty loaded in development.
gem 'vagrant-bindfs', path: '.'
end

group :development, :test do
gem 'vagrant', git: 'https://github.com/hashicorp/vagrant.git'
gem 'multi_xml', '~> 0.6.0'

# Development dependencies
gem 'rake'
gem 'rspec', '~> 3.13.0'
end

0 comments on commit 77ed7c7

Please sign in to comment.