forked from nowiko/AliceBundle
-
-
Notifications
You must be signed in to change notification settings - Fork 98
110 lines (96 loc) · 3.5 KB
/
ci.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
name: CI
on:
pull_request:
push:
branches: [ master ]
# this fixes the input device is not a TTY .. see https://github.com/docker/compose/issues/5696
env:
MYSQL_HOST: '127.0.0.1'
SHELL_VERBOSITY: 1
jobs:
php-cs-fixer:
runs-on: ubuntu-latest
strategy:
matrix:
php:
- '8.2'
dependencies: ['highest']
fail-fast: false
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 }}) Symfony ${{ matrix.symfony }}
runs-on: ubuntu-latest
strategy:
matrix:
php:
- '8.2'
dependencies: ['highest']
symfony:
- 'unchanged'
- '6.4.*'
- '7.*.*'
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 version
if: matrix.symfony != 'unchanged'
run: echo "SYMFONY_REQUIRE=${{ matrix.symfony }}" >> $GITHUB_ENV
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
tools: composer, flex
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: Wait for MySQL
run: |
while ! mysqladmin ping --host=$MYSQL_HOST --user=root --password=$MYSQL_ROOT_PASSWORD --port=3307; do
sleep 1
done
- name: Run tests
run: vendor/bin/phpunit --verbose --stop-on-failure
# This is a "trick", a meta task which does not change, and we can use in
# the protected branch rules as opposed to the individual tests which
# may change regularly.
validate-tests:
name: Tests status
runs-on: ubuntu-latest
needs:
- php-cs-fixer
- phpunit
if: always()
steps:
- name: Successful run
if: ${{ !(contains(needs.*.result, 'failure')) }}
run: exit 0
- name: Failing run
if: ${{ contains(needs.*.result, 'failure') }}
run: exit 1