File tree Expand file tree Collapse file tree 3 files changed +22
-1
lines changed Expand file tree Collapse file tree 3 files changed +22
-1
lines changed Original file line number Diff line number Diff line change @@ -149,3 +149,19 @@ jobs:
149
149
ruby-version : ${{ matrix.ruby }}
150
150
bundler-cache : true
151
151
- run : bundle exec rubocop
152
+ rspectre :
153
+ name : RSpectre
154
+ runs-on : ${{ matrix.os }}
155
+ timeout-minutes : 10
156
+ strategy :
157
+ fail-fast : false
158
+ matrix :
159
+ ruby : [ruby-3.2]
160
+ os : [ubuntu-latest]
161
+ steps :
162
+ - uses : actions/checkout@v3
163
+ - uses : ruby/setup-ruby@v1
164
+ with :
165
+ ruby-version : ${{ matrix.ruby }}
166
+ bundler-cache : true
167
+ - run : bundle exec rspectre
Original file line number Diff line number Diff line change 20
20
diff-lcs (1.5.0 )
21
21
json (2.6.3 )
22
22
parallel (1.22.1 )
23
- parser (3.2.2.0 )
23
+ parser (3.2.2.1 )
24
24
ast (~> 2.4.1 )
25
25
rainbow (3.1.1 )
26
26
regexp_parser (2.6.2 )
41
41
diff-lcs (>= 1.2.0 , < 2.0 )
42
42
rspec-support (~> 3.12.0 )
43
43
rspec-support (3.12.0 )
44
+ rspectre (0.1.0 )
45
+ parser (>= 3.2.2.1 )
46
+ rspec (~> 3.9 )
44
47
rubocop (1.47.0 )
45
48
json (~> 2.3 )
46
49
parallel (~> 1.10 )
@@ -70,6 +73,7 @@ DEPENDENCIES
70
73
rspec (~> 3.10 )
71
74
rspec-core (~> 3.10 )
72
75
rspec-its (~> 1.3.0 )
76
+ rspectre (~> 0.1 )
73
77
rubocop (~> 1.7 )
74
78
75
79
BUNDLED WITH
Original file line number Diff line number Diff line change @@ -34,5 +34,6 @@ Gem::Specification.new do |gem|
34
34
gem . add_development_dependency ( 'rspec' , '~> 3.10' )
35
35
gem . add_development_dependency ( 'rspec-core' , '~> 3.10' )
36
36
gem . add_development_dependency ( 'rspec-its' , '~> 1.3.0' )
37
+ gem . add_development_dependency ( 'rspectre' , '~> 0.1' )
37
38
gem . add_development_dependency ( 'rubocop' , '~> 1.7' )
38
39
end
You can’t perform that action at this time.
0 commit comments