-
Notifications
You must be signed in to change notification settings - Fork 1
102 lines (87 loc) · 2.8 KB
/
build.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
name: build
on:
schedule:
- cron: '0 0 * * *'
push:
paths:
- '**.php'
- .github/workflows/build.yml
- composer.json
- phpstan.neon.dist
- phpunit.xml.dist
pull_request:
paths:
- '**.php'
- .github/workflows/build.yml
- composer.json
- phpstan.neon.dist
- phpunit.xml.dist
jobs:
main:
name: Build [PHP ${{ matrix.php-version }}]
runs-on: ubuntu-24.04
strategy:
fail-fast: false
matrix:
php-version:
- '8.1'
- '8.2'
- '8.3'
- '8.4'
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup PHP, with composer and extensions
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-version }}
tools: composer
extensions: intl, xdebug
coverage: xdebug
- name: Validate composer.json
run: composer validate --strict
- name: Get composer cache directory
id: composer-cache
run: echo "COMPOSER_CACHE_DIR=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
- name: Cache composer dependencies
uses: actions/cache@v4
with:
path: ${{ steps.composer-cache.outputs.COMPOSER_CACHE_DIR }}
key: composer-${{ matrix.php-version }}-${{ hashFiles('**/composer.json') }}
restore-keys: |
composer-${{ matrix.php-version }}
composer-
- name: Install dependencies
run: |
composer config --global github-oauth.github.com ${{ secrets.GITHUB_TOKEN }}
composer update --ansi
- name: Run PHP-CS-Fixer
run: vendor/bin/php-cs-fixer check --ansi --verbose --diff
env:
PHP_CS_FIXER_IGNORE_ENV: ${{ matrix.php-version == '8.4' && '1' || '0' }}
- name: Run PHPStan Static Analysis Check
run: vendor/bin/phpstan analyse --ansi --verbose
env:
XDEBUG_MODE: 'off'
- name: Run Nexus CS Config TestSuite
run: vendor/bin/phpunit --colors=always
env:
TACHYCARDIA_MONITOR_GA: enabled
- name: Run Coveralls
run: |
composer global require --ansi php-coveralls/php-coveralls
php-coveralls --verbose --coverage_clover=build/phpunit/logs/clover.xml --json_path=build/phpunit/logs/coverage.json --exclude-no-stmt --ansi
env:
COVERALLS_REPO_TOKEN: ${{ secrets.GITHUB_TOKEN }}
COVERALLS_PARALLEL: true
COVERALLS_FLAG_NAME: PHP ${{ matrix.php-version }}
coveralls-finish:
name: Coveralls Finished
needs: [main]
runs-on: ubuntu-24.04
steps:
- name: Upload to Coveralls API
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
parallel-finished: true