Skip to content
Open
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
1 change: 1 addition & 0 deletions .env.test
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@ KERNEL_CLASS='App\Kernel'
APP_SECRET='$ecretf0rt3st'
SYMFONY_DEPRECATIONS_HELPER=999999
PANTHER_APP_ENV=panther
DATABASE_URL=sqlite:///%kernel.project_dir%/var/test.db
6 changes: 6 additions & 0 deletions .github/workflows/php.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,11 @@ jobs:
- name: Build webpack
run: yarn encore prod

- name: Create database
run: bin/console doctrine:database:create --env test

- name: Create database schema
run: bin/console doctrine:schema:create --env test

- name: Run test suite
run: bin/phpunit
2 changes: 2 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
"ext-ctype": "*",
"ext-iconv": "*",
"basster/lazy-response-bundle": "^1.1",
"easycorp/easyadmin-bundle": "^2.3",
"scriptibus/abstract-collection": "^1.0",
"sensio/framework-extra-bundle": "^5.5",
"symfony/console": "5.0.*",
Expand All @@ -23,6 +24,7 @@
"symfony/yaml": "5.0.*"
},
"require-dev": {
"dama/doctrine-test-bundle": "^6.3",
"doctrine/doctrine-fixtures-bundle": "^3.3",
"easycorp/easy-log-handler": "^1.0.7",
"friendsofphp/php-cs-fixer": "^2.16",
Expand Down
Loading