Skip to content

Commit fd3faff

Browse files
committed
Run Rubocop in CI
1 parent e3990db commit fd3faff

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

.github/workflows/ci.yml

+18
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,24 @@ on:
1212
- cron: '0 4 1 * *'
1313

1414
jobs:
15+
rubocop:
16+
runs-on: ubuntu-latest
17+
18+
steps:
19+
- name: Checkout
20+
uses: actions/checkout@v4
21+
22+
- name: Setup Ruby
23+
uses: ruby/setup-ruby@v1
24+
with:
25+
ruby-version: '3.3'
26+
27+
- name: Bundler
28+
run: bundle install
29+
30+
- name: Rubocop
31+
run: bin/rubocop
32+
1533
rspec:
1634
runs-on: ubuntu-latest
1735

0 commit comments

Comments
 (0)