Skip to content

Commit

Permalink
CI: Run rubocop
Browse files Browse the repository at this point in the history
  • Loading branch information
bastelfreak committed May 2, 2024
1 parent 96eddbf commit c75b6f2
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,19 @@ env:
BUNDLE_WITHOUT: release

jobs:
rubocop:
env:
BUNDLE_WITHOUT: release
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Ruby ${{ matrix.ruby }}
uses: ruby/setup-ruby@v1
with:
ruby-version: "3.3"
bundler-cache: true
- name: Run Rubocop
run: bundle exec rake rubocop
test:
runs-on: ubuntu-latest
strategy:
Expand Down Expand Up @@ -61,6 +74,7 @@ jobs:

tests:
needs:
- rubocop
- test
runs-on: ubuntu-latest
name: Test suite
Expand Down

0 comments on commit c75b6f2

Please sign in to comment.