fix: php wrong version, adapted for sail #515
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Laravel CI MySQL complete | |
on: | |
push: | |
defaults: | |
run: | |
working-directory: ./backend | |
jobs: | |
tests: | |
runs-on: ubuntu-latest | |
services: | |
# mysql-service Label used to access the service container | |
mysql-service: | |
# Docker Hub image (also with version) | |
image: mysql:5.7 | |
env: | |
MYSQL_ROOT_PASSWORD: ${{ secrets.DB_PASSWORD }} | |
MYSQL_DATABASE: db_test | |
ports: | |
- 33306:3306 | |
# Set health checks to wait until mysql database has started (it takes some seconds to start) | |
options: >- | |
--health-cmd="mysqladmin ping" | |
--health-interval=10s | |
--health-timeout=5s | |
--health-retries=3 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Copy .env | |
run: php -r "file_exists('.env') || copy('.env.example', '.env');" | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: '7.4' | |
- name: Install composer Dependencies | |
run: composer install -q --no-ansi --no-interaction --no-scripts --no-progress --prefer-dist | |
- name: Generate key | |
run: php artisan key:generate | |
- name: Directory Permissions | |
run: chmod -R 777 storage bootstrap/cache | |
- name: Execute tests (Unit and Feature tests) via PHPUnit | |
env: | |
DB_CONNECTION: mysql | |
DB_DATABASE: db_test | |
DB_PORT: 33306 | |
DB_USER: root | |
DB_PASSWORD: ${{ secrets.DB_PASSWORD }} | |
run: | | |
php artisan migrate --seed | |
vendor/bin/phpunit |