Skip to content

Commit

Permalink
ci: fix ci workflow due to double composer step
Browse files Browse the repository at this point in the history
  • Loading branch information
Manuel Canga committed Sep 14, 2024
1 parent 13c61a2 commit 629d169
Showing 1 changed file with 1 addition and 13 deletions.
14 changes: 1 addition & 13 deletions .github/workflows/php.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,18 +29,6 @@ jobs:
- name: Install Dependencies
run: composer install -q --no-ansi --no-interaction --no-scripts --no-progress --prefer-dist

- name: Cache Composer packages
id: composer-cache
uses: actions/cache@v3
with:
path: vendor
key: ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }}
restore-keys: |
${{ runner.os }}-php-
- name: Install dependencies
run: composer install --prefer-dist --no-progress

- name: Execute tests (Smoking Tests and unit tests) via PHPUnit
run: vendor/bin/phpunit --testdox --coverage-text
run: vendor/bin/phpunit --bootstrap tests/bootstrap.php tests --testdox --coverage-text tests

0 comments on commit 629d169

Please sign in to comment.