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.
2 parents f83fcee + 5dc7104 commit 01d17bcCopy full SHA for 01d17bc
.github/workflows/test.yml
@@ -7,7 +7,7 @@ jobs:
7
name: build (${{ matrix.ruby }} / ${{ matrix.os }})
8
strategy:
9
matrix:
10
- ruby: [ 2.7, 2.6, head ]
+ ruby: [ '3.0', 2.7, 2.6, head ]
11
os: [ ubuntu-latest, macos-latest ]
12
runs-on: ${{ matrix.os }}
13
steps:
@@ -16,7 +16,6 @@ jobs:
16
uses: ruby/setup-ruby@v1
17
with:
18
ruby-version: ${{ matrix.ruby }}
19
- - name: Install dependencies
20
- run: bundle install
+ bundler-cache: true # 'bundle install' and cache
21
- name: Run test
22
- run: rake test
+ run: bundle exec rake test
0 commit comments