From dfd606f26d1861c41b71dcfa3cb6a0fefc00bdbd Mon Sep 17 00:00:00 2001 From: Michael Ball Date: Wed, 16 Feb 2022 20:33:37 -0800 Subject: [PATCH] sigh fix missing | --- .github/workflows/specs.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/specs.yml b/.github/workflows/specs.yml index f2cc4dc5..0f8be45b 100644 --- a/.github/workflows/specs.yml +++ b/.github/workflows/specs.yml @@ -42,14 +42,15 @@ jobs: run: | curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > $CCTR chmod +x $CCTR + $CCTR before-build - run: bin/yarn - run: bin/rails webpacker:compile - run: bundle exec rake db:setup - run: bundle exec rake db:migrate - name: Run ${{ matrix.suite }} - run: + run: | bundle exec ${{ matrix.suite }} - $CCTR format-coverage --output coverage/codeclimate.${{ matrix.suite }}.json --input-type simplecov + $CCTR format-coverage -o coverage/codeclimate.${{ matrix.suite }}.json -t simplecov - name: CodeCov Coverage uses: codecov/codecov-action@v2 with: