Skip to content

Commit

Permalink
Update CI: Add Ruby 3.2 and update GA runners (#722)
Browse files Browse the repository at this point in the history
* Add Ruby 3.2 to CI

* Use ubuntu-latest and macos-latest runners

* Fix condition
  • Loading branch information
lovro-bikic authored Oct 3, 2023
1 parent f638fad commit 2e87ff5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ubuntu-20.04, macos-10.15]
ruby: [2.6, 2.7, '3.0', 3.1, jruby-head]
os: [ubuntu-latest, macos-latest]
ruby: [2.6, 2.7, '3.0', 3.1, 3.2, jruby-head]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
Expand All @@ -22,5 +22,5 @@ jobs:
- run: bundle exec rubocop
- run: bundle exec rspec
- name: E2E tests
if: ${{ success() && matrix.os != 'macos-10.15' }}
if: ${{ success() && matrix.os != 'macos-latest' }}
run: bash spec/e2e/e2e_run.sh

0 comments on commit 2e87ff5

Please sign in to comment.