We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dcf71f7 commit 8cf656eCopy full SHA for 8cf656e
.github/workflows/ci.yml
@@ -8,10 +8,9 @@ jobs:
8
strategy:
9
matrix:
10
ruby:
11
- - 2.7
12
# See comment comes from https://github.com/ruby/setup-ruby#matrix-of-ruby-versions
13
# Due to https://github.com/actions/runner/issues/849, we have to use quotes for '3.0'
14
- - '3.0'
+ - '3.0.6'
15
- 3.1
16
- 3.2
17
- 3.3
@@ -28,8 +27,10 @@ jobs:
28
27
- name: Set up Ruby ${{ matrix.ruby }}
29
uses: ruby/setup-ruby@v1
30
with:
31
- bundler-cache: true
+ bundler-cache: false
32
ruby-version: ${{ matrix.ruby }}
+ - name: Update bundler
33
+ run: gem install bundler && bundle install
34
- name: Run tests
35
run: bundle exec rspec
36
static_type_check:
0 commit comments