Skip to content

change docker base to alpine and add multistage #53

change docker base to alpine and add multistage

change docker base to alpine and add multistage #53

Workflow file for this run

name: PHPUnit
on: [push]
jobs:
phpunit:
runs-on: ubuntu-latest
services:
mariadb:
image: mariadb:10.11.2
env:
MYSQL_ALLOW_EMPTY_PASSWORD: false
MYSQL_ROOT_PASSWORD: goteo
MYSQL_DATABASE: goteo
ports:
- 3306/tcp
options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3
steps:
- uses: actions/checkout@v4
- name: Install dependencies
run: composer install --prefer-dist --no-progress --no-suggest
- name: PHPUnit
uses: php-actions/phpunit@v4
env:
DATABASE_URL: mysql://root:[email protected]:${{ job.services.mariadb.ports['3306'] }}/goteo
with:
php_version: 8.2
php_extensions: pdo_mysql
configuration: phpunit.xml.dist