- image: php:8.1.18-fpm-buster
-
- pipelines:
- default:
- - step:
- script:
- - cat /etc/os-release
- - apt update && apt install -y php8.1-mysql
- - cd the-community-nurse-laravel-backend
- - php artisan migrate
- - php artisan serve &
- - php artisan test
- services:
- - mysql
- definitions:
- services:
- mysql:
- image: mysql
- variables:
- MYSQL_DATABASE: 'laravel'
- MYSQL_ROOT_PASSWORD: 'example'
- MYSQL_PORT: '3306'