Skip to content

Renamed surname to last_name [SLE-192] #174

Renamed surname to last_name [SLE-192]

Renamed surname to last_name [SLE-192] #174

Workflow file for this run

name: 🧪 Build test
on:
push:
branches:
- master
- develop
pull_request:
types: [ opened, synchronize, reopened ]
env:
# Set APP_ENV to 'github' so that settings.php loads the correct configuration for database migrations and testing
APP_ENV: github
jobs:
run:
runs-on: ${{ matrix.operating-system }}
strategy:
matrix:
operating-system: [ ubuntu-latest ]
php-versions: [ '8.2' ]
test-database: [ 'slim_example_project_test' ]
name: PHP ${{ matrix.php-versions }} Test
services:
mysql:
image: mysql:8.0.23
env:
MYSQL_ROOT_PASSWORD: root
MYSQL_ALLOW_EMPTY_PASSWORD: true
MYSQL_DATABASE: test
ports:
- 33306:3306
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0 #sonarcloud shallow clone warning https://stackoverflow.com/a/62500400/9013718
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-versions }}
extensions: mbstring, pdo, pdo_mysql, intl, zip
coverage: none
- name: Check PHP version
run: php -v
- name: Check Composer version
run: composer -V
- name: Check PHP extensions
run: php -m
- name: Check MySQL version
run: mysql -V
- name: Start MySQL
run: sudo systemctl start mysql
- name: Check MySQL variables
run: mysql -uroot -proot -e "SHOW VARIABLES LIKE 'version%';"
- name: Set MySQL timezone to swiss time
run: mysql -uroot -proot -e "SET GLOBAL time_zone = '+01:00';"
- name: Create database
run: mysql -uroot -proot -e 'CREATE DATABASE IF NOT EXISTS ${{ matrix.test-database }} CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;'
- name: Validate composer.json and composer.lock
run: composer validate
- name: Install dependencies
run: composer update --no-ansi --no-interaction --no-progress
- name: Execute database migrations
run: composer migrate:prod
- name: Show test db tables
run: mysql -uroot -proot -D ${{ matrix.test-database }} -e "SHOW TABLES;"
- name: Run test suite
run: composer test
env:
PHP_CS_FIXER_IGNORE_ENV: 1