This commit is contained in:
Joel Hawksley 2020-09-21 16:54:36 -06:00
Родитель 931551d467
Коммит 3bddb6f875
3 изменённых файлов: 7 добавлений и 4 удалений

1
.github/workflows/ci.yml поставляемый
Просмотреть файл

@ -62,6 +62,7 @@ jobs:
bundle update
bundle exec rake
env:
CI: true
RAILS_VERSION: ${{ matrix.rails_version }}
- name: Upload coverage results
uses: actions/upload-artifact@master

Просмотреть файл

@ -85,7 +85,7 @@ GIT
PATH
remote: .
specs:
view_component (2.18.1)
view_component (2.19.1)
activesupport (>= 5.0.0, < 7.0)
GEM

Просмотреть файл

@ -2,10 +2,12 @@
require "simplecov"
require "simplecov-console"
SimpleCov.start do
command_name "rails#{ENV["RAILS_VERSION"]}-ruby#{ENV["RUBY_VERSION"]}" if ENV["RUBY_VERSION"]
if ENV["CI"]
SimpleCov.start do
command_name "rails#{ENV["RAILS_VERSION"]}-ruby#{ENV["RUBY_VERSION"]}" if ENV["RUBY_VERSION"]
formatter SimpleCov::Formatter::Console
formatter SimpleCov::Formatter::Console
end
end
require "bundler/setup"