Skip to content

Commit

Permalink
Merge pull request #134 from bastelfreak/ruby33
Browse files Browse the repository at this point in the history
Add Ruby 3.3 to CI matrix
  • Loading branch information
ekohl committed May 28, 2024
2 parents 6635690 + 8a19a96 commit 54ecbc3
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ jobs:
if: github.repository_owner == 'voxpupuli'
steps:
- uses: actions/checkout@v4
- name: Install Ruby 3.0
- name: Install Ruby 3.3
uses: ruby/setup-ruby@v1
with:
ruby-version: '3.0'
ruby-version: '3.3'
env:
BUNDLE_WITHOUT: release
- name: Build gem
Expand Down
13 changes: 7 additions & 6 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Ruby 3.2
- name: Install Ruby 3.3
uses: ruby/setup-ruby@v1
with:
ruby-version: "3.2"
ruby-version: "3.3"
bundler-cache: true
- name: Run Rubocop
run: bundle exec rake rubocop
Expand All @@ -33,6 +33,7 @@ jobs:
coverage: "yes"
- ruby: "3.1"
- ruby: "3.2"
- ruby: "3.3"
env:
COVERAGE: ${{ matrix.coverage }}
name: RSpec - Ruby ${{ matrix.ruby }}
Expand All @@ -53,10 +54,10 @@ jobs:
name: Docker
steps:
- uses: actions/checkout@v4
- name: Install Ruby 3.2
- name: Install Ruby 3.3
uses: ruby/setup-ruby@v1
with:
ruby-version: "3.2"
ruby-version: "3.3"
bundler-cache: true
- name: Run acceptance tests
run: bundle exec rake test:acceptance
Expand Down Expand Up @@ -84,10 +85,10 @@ jobs:
name: Podman
steps:
- uses: actions/checkout@v4
- name: Install Ruby 3.2
- name: Install Ruby 3.3
uses: ruby/setup-ruby@v1
with:
ruby-version: "3.2"
ruby-version: "3.3"
bundler-cache: true
- name: Run acceptance tests
run: bundle exec rake test:acceptance
Expand Down

0 comments on commit 54ecbc3

Please sign in to comment.