Tweak Action to run improved tests

This commit is contained in:
Jonny Barnes 2021-08-31 12:51:40 +01:00
parent 9f66d342d8
commit 7a41cc2a2d

View file

@ -11,7 +11,7 @@ jobs:
services:
postgres:
image: postgres:13.2
image: postgres:13.4
env:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
@ -36,15 +36,13 @@ jobs:
- name: Copy .env
run: php -r "file_exists('.env') || copy('.env.github', '.env');"
- name: Install dependencies
run: composer install -q --no-ansi --no-interaction --no-progress
run: composer install --quiet --no-ansi --no-interaction --no-progress
- name: Generate key
run: php artisan key:generate
- name: Setup directory permissions
run: chmod -R 777 storage bootstrap/cache
- name: Setup test database
run: |
php artisan migrate
php artisan db:seed
run: php artisan migrate
- name: Execute tests (Unit and Feature tests) via PHPUnit
run: vendor/bin/phpunit
- name: Run phpcs