1
0
Fork 0

Update laravel.yml

main
A1Gard 1 year ago committed by GitHub
parent 6d7f5e4e03
commit 4e4eadf40c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -31,16 +31,16 @@ jobs:
mysql --version
sudo apt-get install -y mysql-client
mysql --host 127.0.0.1 --port ${{ job.services.mysql.ports['3306'] }} -uuser -psecret -e "SHOW DATABASES"
- name: Copy .env
run: php -r "file_exists('.env') || copy('.env.example', '.env');"
run: php -r "file_exists('.env') || copy('.env.github', '.env');"
- name: Install Dependencies
run: composer install -q --no-ansi --no-interaction --no-scripts --no-suggest --no-progress --prefer-dist
- name: Directory Permissions
run: chmod -R 777 storage bootstrap/cache
- name: Generate key
- name: Execute tests (Unit and Feature tests) via PHPUnit
env:
MYSQL_DATABASE: test_db
DB_USERNAME: user
@ -51,5 +51,5 @@ jobs:
- name: Database seeder test
run: php artisan migrate:fresh --seed
- name: Developer test
- run: php artisan test
- name : Developer test
run: php artisan tes

Loading…
Cancel
Save