From cbefc2b9557bfdfd14f829f4edae981d968f258f Mon Sep 17 00:00:00 2001 From: Alexey Vardugin Date: Mon, 19 Aug 2024 10:31:33 +0600 Subject: [PATCH] fix: revert DB_PORT --- .github/workflows/run-tests-with-coverage.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/run-tests-with-coverage.yml b/.github/workflows/run-tests-with-coverage.yml index 8b64193..6946be3 100644 --- a/.github/workflows/run-tests-with-coverage.yml +++ b/.github/workflows/run-tests-with-coverage.yml @@ -56,6 +56,8 @@ jobs: run: composer install -q --no-ansi --no-interaction --no-scripts --no-progress --prefer-dist - name: Execute unit tests via PHPUnit with coverage run: vendor/bin/phpunit --coverage-clover build/logs/clover.xml + env: + DB_PORT: ${{ job.services.postgres.ports[5432] }} - name: Upload coverage results to Coveralls env: COVERALLS_REPO_TOKEN: ${{ secrets.GITHUB_TOKEN }}