From 1cd7df89f10a59355c6e6a23800a6313e58af7ce Mon Sep 17 00:00:00 2001 From: Jamie Macey Date: Mon, 12 Oct 2020 13:47:36 -0700 Subject: [PATCH] update conditional tags --- .github/workflows/ruby.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ruby.yml b/.github/workflows/ruby.yml index 01c5a45..9e3c973 100644 --- a/.github/workflows/ruby.yml +++ b/.github/workflows/ruby.yml @@ -47,19 +47,19 @@ jobs: bundle exec rspec - name: rswag-specs - if: succeeded() || failed() + if: success() || failure() run: | cd rswag-specs bundle exec rspec - name: rswag-ui - if: succeeded() || failed() + if: success() || failure() run: | cd rswag-ui bundle exec rspec - name: test-app - if: succeeded() || failed() + if: success() || failure() run: | cd test-app bundle exec rake db:migrate db:test:prepare