Skip to content

Commit

Permalink
Add Ruby 3.2 support
Browse files Browse the repository at this point in the history
  • Loading branch information
bastelfreak committed Mar 24, 2023
1 parent 8532531 commit 71228a7
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 3 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@v3
- name: Install Ruby 3.0
- name: Install Ruby 3.2
uses: ruby/setup-ruby@v1
with:
ruby-version: '3.0'
ruby-version: '3.2'
bundler: 'none'
- name: Build gem
run: gem build *.gemspec
Expand Down
12 changes: 11 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- name: Install Ruby ${{ matrix.ruby }}
uses: ruby/setup-ruby@v1
with:
ruby-version: "3.1"
ruby-version: "3.2"
bundler-cache: true
- name: Run Rubocop
run: bundle exec rake rubocop
Expand All @@ -31,6 +31,7 @@ jobs:
- "2.7"
- "3.0"
- "3.1"
- "3.2"
name: Ruby ${{ matrix.ruby }}
steps:
- uses: actions/checkout@v3
Expand All @@ -43,3 +44,12 @@ jobs:
run: gem build beaker-rspec.gemspec
- name: Run acceptance tests
run: bundle exec rake beaker

tests:
needs:
- rubocop
- build
runs-on: ubuntu-latest
name: Test suite
steps:
- run: echo Test suite completed

0 comments on commit 71228a7

Please sign in to comment.