-
Notifications
You must be signed in to change notification settings - Fork 3
103 lines (82 loc) · 3.37 KB
/
ci.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
# https://help.github.com/en/categories/automating-your-workflow-with-github-actions
on:
push:
branches: [ '**' ]
pull_request:
branches: [ '**' ]
name: "CI"
jobs:
tests:
name: "Tests"
runs-on: "ubuntu-latest"
env:
php_extensions: ctype, dom, fileinfo, hash, intl, mbstring, session, simplexml, tokenizer, xml, pdo, mysqli, gd, zip
services:
mysql:
image: "mysql:8.0"
env:
MYSQL_ALLOW_EMPTY_PASSWORD: true
MYSQL_ROOT_PASSWORD:
MYSQL_DATABASE: test_db
ports:
- 3306/tcp
options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3
strategy:
fail-fast: false
matrix:
php-version:
- "8.1"
- "8.2"
steps:
- name: "Checkout"
uses: "actions/checkout@v2"
- name: "Install PHP with extensions"
uses: "shivammathur/setup-php@v2"
with:
php-version: "${{ matrix.php-version }}"
extensions: "${{ env.php_extensions }}"
coverage: "xdebug"
- name: "Start mysql service"
run: "sudo /etc/init.d/mysql start"
- name: "Cache dependencies installed with composer"
uses: "actions/cache@v1"
with:
path: "~/.composer/cache"
key: "php${{ matrix.php-version }}-composer-${{ matrix.dependencies }}-${{ hashFiles('**/composer.json') }}"
restore-keys: "php${{ matrix.php-version }}-composer-${{ matrix.dependencies }}-"
- name: "Authorize private packagist"
env:
COMPOSER_TOKEN: ${{ secrets.COMPOSER_TOKEN }}
run: "if [[ $COMPOSER_TOKEN ]]; then composer config --global --auth http-basic.repo.packagist.com token $COMPOSER_TOKEN; fi"
- name: "Install dependencies with composer"
run: "composer install --no-ansi --no-interaction --no-progress"
- name: "Run tests with phpunit/phpunit"
env:
SS_DATABASE_PORT: ${{ job.services.mysql.ports['3306'] }}
run: "vendor/bin/phpunit --coverage-html=build/logs/coverage/html --coverage-xml=build/logs/coverage"
- name: "Archive code coverage results"
uses: "actions/upload-artifact@v2"
with:
name: "coverage"
path: "build/logs/coverage/html"
- name: "Run tests with squizlabs/php_codesniffer"
run: "vendor/bin/phpcs src/ tests/ --standard=phpcs.xml.dist --report=checkstyle --report-file=build/logs/checkstyle.xml"
- name: "Archive checkstyle results"
uses: "actions/upload-artifact@v2"
with:
name: "checkstyle"
path: "build/logs/checkstyle.xml"
- name: "Run tests with phpmd/phpmd"
run: "vendor/bin/phpmd src xml codesize,unusedcode,naming --reportfile build/logs/pmd.xml --exclude vendor/ --exclude autoload.php || exit 0"
- name: "Run tests with phploc/phploc"
run: "vendor/bin/phploc --count-tests --exclude vendor/ --log-csv build/logs/phploc.csv --log-xml build/logs/phploc.xml src/ tests/
"
- name: "Run tests with pdepend/pdepend"
run: "vendor/bin/pdepend --jdepend-xml=build/logs/jdepend.xml --ignore=vendor src"
- name: "Publish documentation"
run: "vendor/bin/phpdox -f phpdox.xml"
- name: "Archive documentation"
uses: "actions/upload-artifact@v2"
with:
name: "documentation"
path: "docs/html"