Skip to content

Commit 8cf656e

Browse files
perryqhtstannardashleywillardschoblaska
authored
Removing EOL 2.7 from CI matrix testing (#83)
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]>
1 parent dcf71f7 commit 8cf656e

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,9 @@ jobs:
88
strategy:
99
matrix:
1010
ruby:
11-
- 2.7
1211
# See comment comes from https://github.com/ruby/setup-ruby#matrix-of-ruby-versions
1312
# Due to https://github.com/actions/runner/issues/849, we have to use quotes for '3.0'
14-
- '3.0'
13+
- '3.0.6'
1514
- 3.1
1615
- 3.2
1716
- 3.3
@@ -28,8 +27,10 @@ jobs:
2827
- name: Set up Ruby ${{ matrix.ruby }}
2928
uses: ruby/setup-ruby@v1
3029
with:
31-
bundler-cache: true
30+
bundler-cache: false
3231
ruby-version: ${{ matrix.ruby }}
32+
- name: Update bundler
33+
run: gem install bundler && bundle install
3334
- name: Run tests
3435
run: bundle exec rspec
3536
static_type_check:

0 commit comments

Comments
 (0)