Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
starswaitforus committed Oct 9, 2024
1 parent 8d1a1ea commit 3fe85c6
Showing 1 changed file with 12 additions and 4 deletions.
16 changes: 12 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,14 +28,22 @@ jobs:
run: |
sudo apt-get update && sudo apt-get install -y \
composer
php -r "assert(true);" || echo fail
php -r "assert(false);" || echo fail
XDEBUG_MODE=off php -r "assert(false);" || echo fail
- name: "Install Composer dependencies"
timeout-minutes: 1
run: |
composer install -o
php -r "assert(true);" || echo fail
php -r "assert(false);" || echo fail
XDEBUG_MODE=off php -r "assert(false);" || echo fail
php -r "var_dump(ini_get('zend.assertions'));" || echo fail
XDEBUG_MODE=off php -r "var_dump(ini_get('zend.assertions'));" || echo fail
php -r "var_dump(ini_get('assert.active'));" || echo fail
XDEBUG_MODE=off php -r "var_dump(ini_get('assert.active'));" || echo fail
php -r "var_dump(ini_get('assert.exception'));" || echo fail
XDEBUG_MODE=off php -r "var_dump(ini_get('assert.exception'));" || echo fail
php -r "var_dump(ini_get('assert.bail'));" || echo fail
XDEBUG_MODE=off php -r "var_dump(ini_get('assert.bail'));" || echo fail
false
- name: "Run Composer check"
timeout-minutes: 1
Expand Down

0 comments on commit 3fe85c6

Please sign in to comment.