Skip to content

Commit

Permalink
Merge pull request #516 from ciaranmcnulty/github-actions
Browse files Browse the repository at this point in the history
Fix issue with outcome addressing
  • Loading branch information
ciaranmcnulty committed Dec 19, 2020
2 parents 498b1bc + dbdaa87 commit f62e563
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ jobs:

- name: Run tests (phpspec)
run: ./vendor/bin/phpspec run --format=dot
if: always() && end-of-setup.outcome == 'success'
if: always() && steps.end-of-setup.outcome == 'success'

- name: Run tests (phpunit)
run: ./vendor/bin/phpunit
if: always() && end-of-setup.outcome == 'success'
if: always() && steps.end-of-setup.outcome == 'success'

0 comments on commit f62e563

Please sign in to comment.