From 27b015b3d268d60b0f80c53041d566b0cfe8a389 Mon Sep 17 00:00:00 2001 From: Jamie Macey Date: Mon, 12 Oct 2020 13:29:28 -0700 Subject: [PATCH] ensure we run all specs if there are early failures --- .github/workflows/ruby.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/ruby.yml b/.github/workflows/ruby.yml index 03a5c62..46548e3 100644 --- a/.github/workflows/ruby.yml +++ b/.github/workflows/ruby.yml @@ -41,16 +41,19 @@ jobs: bundle exec rspec - name: rswag-specs + if: succeeded() || failed() run: | cd rswag-specs bundle exec rspec - name: rswag-ui + if: succeeded() || failed() run: | cd rswag-ui bundle exec rspec - name: test-app + if: succeeded() || failed() run: | cd test-app bundle exec rake db:migrate db:test:prepare