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 c9723ec commit bfdd082Copy full SHA for bfdd082
.github/workflows/ruby.yml
@@ -3,6 +3,17 @@ name: CI
3
on: [push, pull_request]
4
5
jobs:
6
+ lint:
7
+ runs-on: ubuntu-latest
8
+
9
+ steps:
10
+ - uses: actions/checkout@v4
11
+ - uses: ruby/setup-ruby@v1
12
+ with:
13
+ bundler-cache: true
14
+ - run: bin/setup
15
+ - run: bundle exec rubocop -DP
16
17
test:
18
runs-on: ubuntu-latest
19
@@ -18,7 +29,6 @@ jobs:
29
ruby-version: ${{ matrix.ruby-version }}
30
bundler-cache: true
20
31
- run: bin/setup
21
- - run: bundle exec rubocop -DP
22
32
- run: bundle exec rake test
23
33
24
34
integration_test:
@@ -35,7 +45,6 @@ jobs:
35
45
- uses: actions/checkout@v4
36
46
- uses: ruby/setup-ruby@v1
37
47
with:
38
- ruby-version: '3.4'
39
48
40
49
41
50
- run: bundle exec rake integration_test
0 commit comments