Skip to content

Commit

Permalink
Fix up rubocop and gem builds
Browse files Browse the repository at this point in the history
  • Loading branch information
patch0 committed Jul 4, 2024
1 parent 842361e commit 41e8e74
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build_publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
bundler-cache: true

- name: Build gem
run: rake build
run: bundle exec rake build

- name: Archive coverage
if: success()
Expand Down
11 changes: 9 additions & 2 deletions .github/workflows/code_quality.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,18 @@
name: 'Code quality'
on:
workflow_call
workflow_call: {}

jobs:
rubocop:
name: Rubocop
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- uses: ruby/setup-ruby@v1
with:
bundler-cache: true

- name: Inspecting with Rubocop
run: rubocop
run: bundle exec rubocop

0 comments on commit 41e8e74

Please sign in to comment.