-
Notifications
You must be signed in to change notification settings - Fork 46
136 lines (115 loc) · 3.92 KB
/
tests.yml
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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
name: Tests
on: [push, pull_request]
env:
DEFAULT_COMPOSER_FLAGS: "--prefer-dist --no-interaction"
CC_TEST_REPORTER_ID: 0edfa8221176e7eca9d698f9cacdcd33aad447698519f57dddfd8fd4eacb03eb
jobs:
## Rector
rector:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install PHP
uses: shivammathur/[email protected]
with:
php-version: '8.0'
extensions: mbstring, intl
coverage: none
env:
COMPOSER_TOKEN: ${{ secrets.GITHUB_TOKEN }}
update: true
- name: Install dependencies
run: composer install --prefer-dist --no-interaction --no-progress --optimize-autoloader
- name: Rector tests
run: composer rector
- uses: stefanzweifel/git-auto-commit-action@v4
with:
commit_message: Apply rector changes
## PHPSTAN
phpstan:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install PHP
uses: shivammathur/[email protected]
with:
php-version: '8.0'
extensions: mbstring, intl
coverage: none
env:
COMPOSER_TOKEN: ${{ secrets.GITHUB_TOKEN }}
update: true
- name: Install dependencies
run: composer install --prefer-dist --no-interaction --no-progress --optimize-autoloader
- name: PHPStan tests
run: composer phpstan
# PHPCSFIXER
php-cs-fixer:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install
run: composer install
- name: Run php-cs-fixer
run: composer phpcsfixer
- uses: stefanzweifel/git-auto-commit-action@v4
with:
commit_message: Apply php-cs-fixer changes
continue-on-error: true # if is fork
## PHP UNIT
phpunit:
name: PHP ${{ matrix.php }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
php: ['8.0', '8.1', '8.2', '8.3']
services:
mysql:
image: mysql:5.7
env:
MYSQL_ROOT_PASSWORD: root
MYSQL_DATABASE: myapp_test
ports:
- "8888:3306"
options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3
steps:
## checkout the repoistory
- name: Checkout Repo
uses: actions/checkout@v2
## Install(?) php
- name: Install PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
extensions: curl, dom, imagick, intl, mbstring, mcrypt, memcached, mysql, pdo, pdo_mysql, pdo_pgsql, pdo_sqlite, pgsql, sqlite
ini-values: date.timezone='UTC',error_reporting=E_ALL,display_errors=On
coverage: xdebug
## install composer
- name: Install dependencies
run: composer install $DEFAULT_COMPOSER_FLAGS
## inject database
- name: Setup database
run: |
sudo /etc/init.d/mysql start
mysql -h 127.0.0.1 --port 8888 -u root -proot myapp_test < tests/data/sql/latest/5.0.0.sql
## run unit tests
- name: PHP Unit tests for PHP 8.1, 8.2, 8.3
run: vendor/bin/phpunit --verbose --configuration actions.phpunit.xml
if: matrix.php == '8.1' || matrix.php == '8.2' || matrix.php == '8.3'
## unit test with coverage
- name: PHP Unit tests for PHP 8.0
run: vendor/bin/phpunit --verbose --coverage-clover=clover.xml --configuration actions.phpunit.xml
if: matrix.php == '8.0'
## coverage
- name: Code coverage
run: |
curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
chmod +x ./cc-test-reporter
./cc-test-reporter after-build -t clover
if: matrix.php == '8.0'
continue-on-error: true # if is fork