Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ jobs:
run: php artisan migrate --no-interaction -vvv --force
- name: Execute code style check via Laravel Pint
run: vendor/bin/pint --test -v
- name: Execute tests (Unit and Feature tests) via PHPUnit
- name: Execute tests (Unit and Feature tests) via Pest
if: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.repo.fork }}
env:
DB_HOST: 127.0.0.1
Expand All @@ -110,7 +110,7 @@ jobs:
DB_PASSWORD: password
LOG_CHANNEL: stack
run: php artisan test --parallel --testsuite=Unit,Feature --coverage-clover=coverage.xml
- name: Execute tests (Unit, Feature and Integration tests) via PHPUnit
- name: Execute tests (Unit, Feature and Integration tests) via Pest
if: ${{ github.event_name != 'pull_request' || !github.event.pull_request.head.repo.fork }}
env:
DB_HOST: 127.0.0.1
Expand All @@ -124,7 +124,7 @@ jobs:

run: php artisan test --parallel --testsuite=Unit,Feature --coverage-clover=coverage.xml

- name: Execute tests (Unit and Feature tests) via PHPUnit using Postgres
- name: Execute tests (Unit and Feature tests) via Pest using Postgres
env:
DB_CONNECTION: pgsql
DB_HOST: 127.0.0.1
Expand Down
3 changes: 2 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@
"fakerphp/faker": "^1.9.1",
"laravel/pint": "^1.14",
"mockery/mockery": "^1.4.2",
"pestphp/pest": "^3.7",
"php-coveralls/php-coveralls": "^2.3.0",
"phpunit/phpunit": "^11.0",
"squizlabs/php_codesniffer": "3.*",
"timacdonald/log-fake": "^2.0.1"
},
Expand All @@ -48,6 +48,7 @@
"preferred-install": "dist",
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true,
"php-http/discovery": true
}
},
Expand Down
Loading
Loading