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 2955ae5 commit 71e9f3aCopy full SHA for 71e9f3a
Rakefile
@@ -25,5 +25,5 @@ RSpec::Core::RakeTask.new
25
26
RuboCop::RakeTask.new do |task|
27
task.formatters = ['progress']
28
- task.formatters << 'github' if ENV.key?('GITHUB_ACTIONS')
+ task.formatters << 'github' if ENV['GITHUB_ACTIONS'] == 'true'
29
end
spec/spec_helper.rb
@@ -7,7 +7,7 @@
7
require_relative 'sandbox'
8
9
RSpec.configure do |config|
10
- config.color_mode = :on if ENV.key?('GITHUB_ACTIONS')
+ config.color_mode = :on if ENV['GITHUB_ACTIONS'] == 'true'
11
config.formatter = :documentation
12
13
config.include Console
0 commit comments