Skip to content

Commit 9a3c1f1

Browse files
committed
Don't need to install bundler manually
1 parent 39f9802 commit 9a3c1f1

File tree

3 files changed

+2
-8
lines changed

3 files changed

+2
-8
lines changed

.github/workflows/macos.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,6 @@ jobs:
88
steps:
99
- uses: actions/checkout@v2
1010
- name: Install dependencies
11-
run: |
12-
gem install bundler --no-document
13-
bundle install
11+
run: bundle install
1412
- name: Run test
1513
run: rake && RUBYOPT=--enable-frozen_string_literal rake

.github/workflows/ubuntu.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,6 @@ jobs:
1515
with:
1616
ruby-version: ${{ matrix.ruby }}
1717
- name: Install dependencies
18-
run: |
19-
gem install bundler --no-document
20-
bundle install
18+
run: bundle install
2119
- name: Run test
2220
run: rake

.github/workflows/windows.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,6 @@ jobs:
1414
uses: ruby/setup-ruby@v1
1515
with:
1616
ruby-version: ${{ matrix.ruby }}
17-
- name: Set up Bundler
18-
run: gem install bundler --no-document --force
1917
- name: Install dependencies
2018
run: bundle install
2119
- name: Run test

0 commit comments

Comments
 (0)