We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2273c70 commit f3c0a90Copy full SHA for f3c0a90
.github/workflows/main.yml
@@ -13,6 +13,19 @@ concurrency:
13
cancel-in-progress: true
14
15
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
+
29
test:
30
runs-on: ${{ matrix.os }}
31
strategy:
@@ -29,5 +42,5 @@ jobs:
42
with:
43
ruby-version: ${{ matrix.ruby-version }}
44
bundler-cache: true
32
- - name: Run the default task
45
+ - name: Run tests
33
46
run: bundle exec rake
0 commit comments