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 9e6d117 commit 5deb2f5Copy full SHA for 5deb2f5
.github/workflows/test.yml
@@ -21,7 +21,7 @@ jobs:
21
uses: ruby/setup-ruby@v1
22
with:
23
ruby-version: ${{ matrix.entry.ruby }}
24
- bundler-cache: true
+ bundler-cache: true # 'bundle install' and cache gems
25
- name: Set Concurrency
26
run: |
27
if [[ ! -z "${{ matrix.entry.concurrency }}" ]]; then
@@ -32,12 +32,10 @@ jobs:
32
continue-on-error: ${{ matrix.entry.ignore || false }}
33
env:
34
RACK_ENV: test
35
- run: |
36
- bundle install
37
- bundle exec rake
+ run: bundle exec rake
38
- name: Coveralls
39
uses: coverallsapp/github-action@master
40
41
github-token: ${{ secrets.GITHUB_TOKEN }}
42
- name: Coveralls Finished
43
- uses: coverallsapp/github-action@master
+ uses: coverallsapp/github-action@master
0 commit comments