Skip to content

Commit

Permalink
Replace phive with composer
Browse files Browse the repository at this point in the history
This is sadly necessary as phive doesn't take the current PHP-Version
into account. So it installs the latest and best regardless whether that
works with the current PHP-Version. Like PHPUnit10 and PHP7.4 :-/
  • Loading branch information
heiglandreas committed Aug 31, 2023
1 parent 2e9c5a5 commit 1a90554
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,9 @@ jobs:
- name: install dependencies
run: composer install
- name: install tools
run: phive install --trust-gpg-keys 4AA394086372C20A phpunit
run: composer require --dev phpunit
- name: Run Unit-Tests
run: ./tools/phpunit --testdox
run: ./vendor/bin/phpunit --testdox
coverage:
needs: test
runs-on: ubuntu-latest
Expand Down

0 comments on commit 1a90554

Please sign in to comment.