Skip to content

Commit a266482

Browse files
authored
Stop bundling twice on CI (#62)
We were asking `ruby/setup-ruby` to bundle and we were then bundling ourselves, which wasted time.
1 parent e53f223 commit a266482

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,16 +16,13 @@ jobs:
1616
runs-on: ubuntu-latest
1717

1818
env:
19-
BUNDLE_JOBS: 4
20-
BUNDLE_PATH: vendor/bundle
2119
CI: true
2220

2321
name: ${{ matrix.ruby }}
2422
steps:
23+
- uses: actions/checkout@v2
2524
- uses: ruby/setup-ruby@v1
2625
with:
2726
bundler-cache: true
2827
ruby-version: ${{ matrix.ruby }}
29-
- uses: actions/checkout@v2
30-
- run: bundle install --path vendor/bundle
3128
- run: bundle exec rake

0 commit comments

Comments
 (0)