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 739bd91 commit 70fe51aCopy full SHA for 70fe51a
.github/workflows/ruby.yml
@@ -26,9 +26,7 @@ jobs:
26
# run: |
27
# bundle exec danger
28
- name: Rubocop
29
- run: |
30
- bundle install
31
- rubocop --autocorrect
+ run: bundle exec rubocop --autocorrect
32
Test:
33
runs-on: ubuntu-latest
34
strategy:
@@ -46,9 +44,7 @@ jobs:
46
44
ruby-version: ${{ matrix.ruby-version }}
47
45
bundler-cache: true
48
- name: Run tests
49
50
51
- rake test
+ run: bundle exec rake test
52
Demo:
53
54
steps:
@@ -61,9 +57,7 @@ jobs:
61
57
ruby-version: 3.4
62
58
63
59
working-directory: demo
64
65
66
- rake test:all
60
+ run: bundle exec rake test:all
67
# - name: Commit changed screenshots and other files
68
# if: failure()
69
# working-directory: demo
0 commit comments