ci: Split qa and test workflow for pipeline #1
Workflow file for this run
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: Tests | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
workflow_dispatch: | |
permissions: | |
contents: read | |
jobs: | |
tests: | |
name: PHPUnit with PHP ${{ matrix.php-version }} ${{ matrix.dependencies }} | |
runs-on: ubuntu-latest | |
# from https://ldarren.medium.com/number-of-ways-to-setup-database-in-github-actions-2cd48df9faae | |
services: | |
db: | |
image: mariadb:10.10.2 | |
env: | |
MYSQL_ALLOW_EMPTY_PASSWORD: 'yes' | |
MYSQL_DATABASE: 'pimcore' | |
MYSQL_USER: 'pimcore' | |
MYSQL_PASSWORD: 'pimcore' | |
options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3 | |
ports: | |
- 3306:3306 | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- php-version: "8.1" | |
dependencies: "lowest" | |
- php-version: "8.1" | |
dependencies: "highest" | |
steps: | |
- name: Git Checkout | |
uses: actions/checkout@v4 | |
- name: PHP Setup | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php-version }} | |
- name: Install dependencies | |
uses: ramsey/composer-install@v2 | |
with: | |
dependency-versions: ${{ matrix.dependencies }} | |
- name: Execute tests | |
run: composer tests | |
env: | |
MYSQL_HOST: '127.0.0.1' | |
MYSQL_SERVER_VERSION: 'mariadb-10.11.4' |