Skip to content

Commit

Permalink
Merge pull request #536 from petergoldstein/feature/add_ruby_3_2_to_ci
Browse files Browse the repository at this point in the history
Add Ruby 3.2 to CI
  • Loading branch information
sj26 authored Apr 11, 2023
2 parents 69e4f87 + 54e5266 commit b9466be
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,17 +13,17 @@ jobs:

strategy:
matrix:
ruby-version: ['2.6', '2.7', '3.0', '3.1']
ruby-version: ['2.6', '2.7', '3.0', '3.1', '3.2']

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
bundler-cache: true

- uses: actions/setup-node@v2
- uses: actions/setup-node@v3

- uses: browser-actions/setup-chrome@latest
- uses: nanasess/setup-chromedriver@master
Expand All @@ -32,7 +32,7 @@ jobs:
run: bundle exec rake test

- name: Upload test artifacts
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
if: always()
with:
name: test-artifacts
Expand Down

0 comments on commit b9466be

Please sign in to comment.