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 11907ed commit a1e173cCopy full SHA for a1e173c
Gemfile
@@ -17,6 +17,7 @@ group :development do
17
end
18
19
group :test do
20
+ gem 'rspec-github', require: false
21
gem 'rspec-rails'
22
gem 'simplecov'
23
gem 'simplecov-cobertura'
spec/spec_helper.rb
@@ -30,4 +30,10 @@
30
31
RSpec.configure do |config|
32
config.order = 'random'
33
+
34
+ # Use the GitHub Annotations formatter for CI
35
+ if ENV['GITHUB_ACTIONS'] == 'true'
36
+ require 'rspec/github'
37
+ config.add_formatter RSpec::Github::Formatter
38
+ end
39
0 commit comments