Skip to content

Commit

Permalink
Add support for 3.3 on CI
Browse files Browse the repository at this point in the history
  • Loading branch information
pabloh committed May 5, 2024
1 parent 5778585 commit 756aae3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,14 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
ruby-version: [2.6, 2.7, 3.0, 3.1, 3.2]
ruby-version: [2.6, 2.7, 3.0, 3.1, 3.2, 3.3]
steps:
- uses: actions/checkout@v3
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
bundler: '2.4.10'
bundler: '2.4.22'
bundler-cache: true
- name: Run tests
run: bundle exec rake
Expand Down
2 changes: 1 addition & 1 deletion pathway.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ Gem::Specification.new do |spec|
spec.add_dependency "ruby2_keywords"

spec.add_development_dependency "dry-validation", ">= 0.11"
spec.add_development_dependency "bundler", "~> 2.4.10"
spec.add_development_dependency "bundler", ">= 2.4.10"
spec.add_development_dependency "sequel", "~> 5.0"
spec.add_development_dependency "rake", "~> 13.0"
spec.add_development_dependency "rspec", "~> 3.11"
Expand Down

0 comments on commit 756aae3

Please sign in to comment.