Skip to content

Commit

Permalink
upgrading ruby to 3.3
Browse files Browse the repository at this point in the history
  • Loading branch information
kbrock committed Aug 12, 2024
1 parent 46c992a commit 98f251b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ jobs:
ruby-version:
- '3.0'
- '3.1'
- '3.4'
test-suite:
- vmdb
- security
Expand Down Expand Up @@ -52,6 +53,6 @@ jobs:
- name: Run tests
run: bundle exec rake
- name: Report code coverage
if: ${{ github.ref == 'refs/heads/master' && matrix.ruby-version == '3.1' && matrix.test-suite == 'vmdb' }}
if: ${{ github.ref == 'refs/heads/master' && matrix.ruby-version == '3.3' && matrix.test-suite == 'vmdb' }}
continue-on-error: true
uses: paambaati/codeclimate-action@v5
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
raise "Ruby versions < 3.0.1 are unsupported!" if RUBY_VERSION < "3.0.1"
raise "Ruby versions >= 3.2.0 are unsupported!" if RUBY_VERSION >= "3.2.0"
raise "Ruby versions >= 3.2.0 are unsupported!" if RUBY_VERSION >= "3.4.0"

source 'https://rubygems.org'

Expand Down

0 comments on commit 98f251b

Please sign in to comment.