We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 842361e commit 41e8e74Copy full SHA for 41e8e74
.github/workflows/build_publish.yml
@@ -20,7 +20,7 @@ jobs:
20
bundler-cache: true
21
22
- name: Build gem
23
- run: rake build
+ run: bundle exec rake build
24
25
- name: Archive coverage
26
if: success()
.github/workflows/code_quality.yml
@@ -1,11 +1,18 @@
1
name: 'Code quality'
2
on:
3
- workflow_call
+ workflow_call: {}
4
5
jobs:
6
rubocop:
7
+ name: Rubocop
8
runs-on: ubuntu-latest
9
steps:
10
+ - uses: actions/checkout@v4
11
+
12
+ - uses: ruby/setup-ruby@v1
13
+ with:
14
+ bundler-cache: true
15
16
- name: Inspecting with Rubocop
- run: rubocop
17
+ run: bundle exec rubocop
18
0 commit comments