From d491a6a30f28e7f2306bab7317f66c7b36fa6ba1 Mon Sep 17 00:00:00 2001 From: Sebastian Serth Date: Mon, 7 Dec 2020 19:23:06 +0100 Subject: [PATCH] GitHub Actions: Use single line where available --- .github/workflows/ci.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e706234d..cf83fd17 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -72,14 +72,12 @@ jobs: - name: Create database env: RAILS_ENV: test - run: | - bundler exec rake db:schema:load RAILS_ENV=test + run: bundler exec rake db:schema:load RAILS_ENV=test - name: Run tests env: RAILS_ENV: test CC_TEST_REPORTER_ID: true - run: | - bundle exec rspec --color --format progress --require spec_helper --require rails_helper + run: bundle exec rspec --color --format progress --require spec_helper --require rails_helper - name: Send coverage to CodeClimate uses: paambaati/codeclimate-action@v2.7.4