Skip to content

Commit 8654d23

Browse files
authored
Merge pull request #5 from ruby/tweak-actions
Tweak actions
2 parents c05edf5 + ad5ade8 commit 8654d23

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

.github/workflows/test.yml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,18 +7,16 @@ jobs:
77
name: build (${{ matrix.ruby }} / ${{ matrix.os }})
88
strategy:
99
matrix:
10-
ruby: [ 2.7, 2.6, 2.5, head ]
10+
ruby: [ 3.0, 2.7, 2.6, 2.5, head ]
1111
os: [ ubuntu-latest, macos-latest ]
1212
runs-on: ${{ matrix.os }}
1313
steps:
14-
- uses: actions/checkout@master
14+
- uses: actions/checkout@v2
1515
- name: Set up Ruby
1616
uses: ruby/setup-ruby@v1
1717
with:
1818
ruby-version: ${{ matrix.ruby }}
1919
- name: Install dependencies
20-
run: |
21-
gem install bundler --no-document
22-
bundle install
20+
run: bundle install
2321
- name: Run test
2422
run: rake test

0 commit comments

Comments
 (0)