Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CI: Add Ruby 3.2 #283

Merged
merged 3 commits into from
May 16, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
strategy:
fail-fast: false
matrix:
ruby: ['2.5', '2.6', '2.7', '3.0', '3.1']
ruby: ['2.6', '2.7', '3.0', '3.1', '3.2']
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
Expand All @@ -20,4 +20,4 @@ jobs:
run: bundle exec rake test
- name: RuboCop
run: bundle exec rake lint
if: matrix.ruby != '3.1'
if: matrix.ruby != '3.1' && matrix.ruby != '3.2'
4 changes: 2 additions & 2 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@ PATH
remote: .
specs:
pg_query (4.2.0)
google-protobuf (>= 3.19.2)
google-protobuf (>= 3.22.3)

GEM
remote: https://rubygems.org/
specs:
ast (2.4.1)
diff-lcs (1.3)
google-protobuf (3.21.12)
google-protobuf (3.22.3)
parallel (1.20.1)
parser (2.7.2.0)
ast (~> 2.4.1)
Expand Down
2 changes: 1 addition & 1 deletion pg_query.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,5 @@ Gem::Specification.new do |s|
s.add_development_dependency 'rspec', '~> 3.0'
s.add_development_dependency 'rubocop', '0.49.1'
s.add_development_dependency 'rubocop-rspec', '1.15.1'
s.add_dependency 'google-protobuf', '>= 3.19.2'
s.add_dependency 'google-protobuf', '>= 3.22.3'
end