-
-
Notifications
You must be signed in to change notification settings - Fork 7
61 lines (59 loc) · 1.99 KB
/
Copy pathci_build.yml
File metadata and controls
61 lines (59 loc) · 1.99 KB
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
name: "ci build"
on:
pull_request:
push:
branches:
- "master"
jobs:
build:
name: PHP ${{ matrix.php-versions }} (${{ matrix.deps }})
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
php-versions: ['8.2', '8.3', '8.4']
deps: ['prefer-latest', 'prefer-lowest']
steps:
- name: Setup PHP Action
uses: shivammathur/setup-php@v2
with:
extensions: intl
php-version: "${{ matrix.php-versions }}"
coverage: xdebug
- name: Setup MySQL
uses: shogo82148/actions-setup-mysql@v1
with:
mysql-version: '8.0'
- run: mysql -uroot -h127.0.0.1 -e 'SELECT version()'
- name: Checkout
uses: actions/checkout@v2
- name: Import DB
run: "mysql -u root -h 127.0.0.1 -e 'create database errorheromodule' && mysql -u root -h 127.0.0.1 errorheromodule < spec/Fixture/data/sql.sql"
- name: "Validate composer.json"
run: "composer validate"
- name: "Install dependencies (${{ matrix.deps }})"
run: |
if [ "${{ matrix.deps }}" = "prefer-lowest" ]; then
composer update --prefer-lowest --prefer-stable --no-interaction --no-progress --ignore-platform-reqs
else
composer install --no-interaction --no-progress --ignore-platform-reqs
fi
- name: "CS Check"
run: "composer cs-check"
- name: "Code analyze"
run: |
composer phpstan
bin/rector process --dry-run
- name: "Run test suite"
run: |
composer dump-autoload -o
mkdir -p build/logs && bin/kahlan --coverage=4 --reporter=verbose --clover=build/logs/clover.xml
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
file: ./build/logs/clover.xml
flags: tests
name: codecov-umbrella
codecov_yml_path: ./codecov.yml
fail_ci_if_error: true