Skip to content

Commit

Permalink
Removing EOL 2.7 from CI matrix testing (#83)
Browse files Browse the repository at this point in the history
Removed ruby 2.7 and fixed bundler issue for ruby 3. We needed to manually install bundler.

Co-authored-by: Teal Stannard <[email protected]>
Co-authored-by: Ashley Willard <[email protected]>
Co-authored-by: Joey Schoblaska <[email protected]>
  • Loading branch information
4 people authored Feb 9, 2024
1 parent dcf71f7 commit 8cf656e
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,9 @@ jobs:
strategy:
matrix:
ruby:
- 2.7
# See comment comes from https://github.com/ruby/setup-ruby#matrix-of-ruby-versions
# Due to https://github.com/actions/runner/issues/849, we have to use quotes for '3.0'
- '3.0'
- '3.0.6'
- 3.1
- 3.2
- 3.3
Expand All @@ -28,8 +27,10 @@ jobs:
- name: Set up Ruby ${{ matrix.ruby }}
uses: ruby/setup-ruby@v1
with:
bundler-cache: true
bundler-cache: false
ruby-version: ${{ matrix.ruby }}
- name: Update bundler
run: gem install bundler && bundle install
- name: Run tests
run: bundle exec rspec
static_type_check:
Expand Down

0 comments on commit 8cf656e

Please sign in to comment.