Skip to content

Commit

Permalink
Add Ruby 3.2 to the CI
Browse files Browse the repository at this point in the history
  • Loading branch information
pabloh committed Apr 5, 2023
1 parent a5c5967 commit d6eacb7
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,18 +11,19 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
ruby-version: [2.6, 2.7, 3.0, 3.1]
ruby-version: [2.6, 2.7, 3.0, 3.1, 3.2]
steps:
- uses: actions/checkout@v2
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
bundler: '2.4.10'
bundler-cache: true
- name: Run tests
run: bundle exec rake
- name: Coveralls GitHub Action
if: matrix.ruby-version == '3.1'
uses: coverallsapp/github-action@1.1.3
if: matrix.ruby-version == '3.2'
uses: coverallsapp/github-action@v1
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
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.3.7"
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 d6eacb7

Please sign in to comment.