Skip to content

Commit f3c0a90

Browse files
committed
ci
1 parent 2273c70 commit f3c0a90

File tree

1 file changed

+14
-1
lines changed

1 file changed

+14
-1
lines changed

.github/workflows/main.yml

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,19 @@ concurrency:
1313
cancel-in-progress: true
1414

1515
jobs:
16+
lint:
17+
runs-on: ubuntu-latest
18+
steps:
19+
- uses: actions/checkout@v4
20+
- name: Set up Ruby
21+
uses: ruby/setup-ruby@master
22+
with:
23+
ruby-version: '3.4'
24+
bundler-cache: true
25+
- name: Run rubocop
26+
run: |
27+
bundle exec rubocop
28+
1629
test:
1730
runs-on: ${{ matrix.os }}
1831
strategy:
@@ -29,5 +42,5 @@ jobs:
2942
with:
3043
ruby-version: ${{ matrix.ruby-version }}
3144
bundler-cache: true
32-
- name: Run the default task
45+
- name: Run tests
3346
run: bundle exec rake

0 commit comments

Comments
 (0)