Skip to content

Commit

Permalink
Added result to be present before error catch and action debug
Browse files Browse the repository at this point in the history
  • Loading branch information
lotharthesavior committed Aug 19, 2023
1 parent ccca784 commit 9e4d1a6
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/actions/prepare-environment/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,20 @@ runs:
with:
php-version: '8.2'
extensions: openswoole
coverage: none
env:
fail-fast: true

- name: Debug
shell: bash
run: |
echo "================================"
echo "================================"
php -i
echo "================================"
php -i | grep php.ini
echo "================================"
echo "================================"
- name: Validate composer.json and composer.lock
shell: bash
Expand Down
1 change: 1 addition & 0 deletions src/Services/Server.php
Original file line number Diff line number Diff line change
Expand Up @@ -283,6 +283,7 @@ private function addCookies(array &$requestOptions, array $cookies = []): void

private function executeRequest(array $requestOptions, string $content): JackedResponse
{
$result = '';
$error = '';

$startTime = microtime(true);
Expand Down

0 comments on commit 9e4d1a6

Please sign in to comment.