Skip to content

Commit

Permalink
Merge pull request #8 from petergoldstein/feature/add_ruby_3_2_to_ci
Browse files Browse the repository at this point in the history
Adds Ruby 3.2 to the CI matrix.
  • Loading branch information
bdewater authored Dec 26, 2022
2 parents f842139 + e7685d6 commit 2da3470
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,15 @@ jobs:
strategy:
fail-fast: false
matrix:
ruby: ["2.5", "2.6", "2.7", "3.0", "3.1", ruby-head]
ruby: ["2.5", "2.6", "2.7", "3.0", "3.1", "3.2", ruby-head]

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
bundler-cache: true # 'bundle install' and cache gems
ruby-version: ${{ matrix.ruby }}
bundler: 2.3.26
- name: Run tests
run: bundle exec rake
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
name: Rubocop

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
Expand Down

0 comments on commit 2da3470

Please sign in to comment.