Skip to content

Commit

Permalink
Run both phpspec and phpunit in all cases
Browse files Browse the repository at this point in the history
  • Loading branch information
ciaranmcnulty committed Dec 19, 2020
1 parent 8c7dbea commit 150b25e
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,12 @@ jobs:

- name: Install dependencies
run: COMPOSER_ROOT_VERSION=dev-master composer update ${{ matrix.composer-flags }}
id: end-of-setup

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

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

0 comments on commit 150b25e

Please sign in to comment.