Skip to content

Commit 2e87ff5

Browse files
authored
Update CI: Add Ruby 3.2 and update GA runners (#722)
* Add Ruby 3.2 to CI * Use ubuntu-latest and macos-latest runners * Fix condition
1 parent f638fad commit 2e87ff5

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/ci.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ jobs:
1010
strategy:
1111
fail-fast: false
1212
matrix:
13-
os: [ubuntu-20.04, macos-10.15]
14-
ruby: [2.6, 2.7, '3.0', 3.1, jruby-head]
13+
os: [ubuntu-latest, macos-latest]
14+
ruby: [2.6, 2.7, '3.0', 3.1, 3.2, jruby-head]
1515
runs-on: ${{ matrix.os }}
1616
steps:
1717
- uses: actions/checkout@v2
@@ -22,5 +22,5 @@ jobs:
2222
- run: bundle exec rubocop
2323
- run: bundle exec rspec
2424
- name: E2E tests
25-
if: ${{ success() && matrix.os != 'macos-10.15' }}
25+
if: ${{ success() && matrix.os != 'macos-latest' }}
2626
run: bash spec/e2e/e2e_run.sh

0 commit comments

Comments
 (0)