Skip to content

Commit

Permalink
Simplify Workflow (#8)
Browse files Browse the repository at this point in the history
  • Loading branch information
theofidry authored Jan 1, 2022
1 parent e3abe9b commit 98d38d9
Show file tree
Hide file tree
Showing 5 changed files with 111 additions and 134 deletions.
File renamed without changes.
92 changes: 92 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,92 @@
name: CI

on:
pull_request:
push:
branches: [ master ]

env:
SHELL_VERBOSITY: 1

jobs:
php-cs-fixer:
runs-on: ubuntu-latest
strategy:
matrix:
php:
- '8.1'
dependencies: ['highest']
fail-fast: false
env:
PHP_CS_FIXER_FUTURE_MODE: '1'
steps:
- name: Checkout
uses: actions/checkout@v2

- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
extensions: intl, bcmath, curl, openssl, mbstring
ini-values: memory_limit=-1
tools: composer, php-cs-fixer
coverage: none

- name: Run PHP-CS-Fixer fix
run: php-cs-fixer fix --dry-run --diff --ansi

phpunit:
name: PHPUnit (PHP ${{ matrix.php }})
runs-on: ubuntu-latest
strategy:
matrix:
php:
- '7.4'
- '8.0'
- '8.1'
variant: ['normal']
dependencies: ['highest']
include:
- php: '7.4'
variant: 'symfony/symfony:"^5.4"'
dependencies: 'highest'
composer-flags: ''
- php: '7.4'
variant: 'symfony/symfony:"^5.4"'
dependencies: 'lowest'
fail-fast: false

services:
# To keep in sync with fixtures/Functional/config/doctrine.yml and docker-compose.yaml
mysql:
image: mysql:8.0
ports:
- 3307:3306
env:
MYSQL_DATABASE: hautelook_alice_bundle
MYSQL_ROOT_USER: root
MYSQL_ROOT_PASSWORD: password
steps:
- name: Checkout
uses: actions/checkout@v2

- name: Configure Symfony (variant)
if: matrix.variant != 'normal'
run: composer require --dev --no-update ${{ matrix.variant }}

- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
tools: composer
extensions: intl, bcmath, curl, openssl, mbstring
ini-values: memory_limit=-1

- name: Install Composer dependencies (${{ matrix.dependencies }})
uses: ramsey/composer-install@v1
with:
dependency-versions: ${{ matrix.dependencies }}
composer-options: "--prefer-dist"

- name: Run tests
run: vendor/bin/phpunit --verbose --stop-on-failure
133 changes: 0 additions & 133 deletions .github/workflows/ci.yml

This file was deleted.

17 changes: 17 additions & 0 deletions docker-compose.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
version: '3.1'

# To keep in sync with .gitHub/workflows/tests.yaml
services:
mysql:
image: mysql:8.0
platform: linux/amd64
ports:
- 3307:3306
environment:
# To keep in sync with fixtures/Functional/config/doctrine.yml and .github/workflows/ci.yaml
MYSQL_DATABASE: hautelook_alice_bundle
MYSQL_ROOT_USER: root
MYSQL_ROOT_PASSWORD: password
# Store data in memory to improve speed
tmpfs:
- /var/lib/mysql
3 changes: 2 additions & 1 deletion fixtures/Functional/config/doctrine.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@ doctrine:
default:
driver: pdo_mysql
dbname: hautelook_alice_bundle
port: 3307
user: root
password: ~
password: password
orm:
auto_mapping: true

0 comments on commit 98d38d9

Please sign in to comment.