-
-
Notifications
You must be signed in to change notification settings - Fork 1
65 lines (51 loc) · 1.65 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
name: CI
on:
push:
branches:
- develop
pull_request:
branches:
- '*'
jobs:
run:
runs-on: ${{ matrix.operating-system }}
strategy:
matrix:
operating-system: [ 'ubuntu-latest' ]
php-versions: [ '8.3', '8.4' ]
name: PHP ${{ matrix.php-versions }} Test on ${{ matrix.operating-system }}
steps:
- name: Checkout Code
uses: actions/checkout@v4
- name: Set Up PHP Environment
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-versions }}
extensions: mbstring
coverage: xdebug
- name: Display PHP Version
run: php -v
- name: Update Composer to Latest Version
run: composer self-update
- name: Install Composer Dependencies
run: composer install --optimize-autoloader
- name: Validate Composer Configuration
run: composer check
- name: Lint PHP Files
run: |
find src tests -name '*.php' -exec php -l {} \;
- name: Run Tests and Generate Coverage Report
run: |
composer test -- --coverage-clover=coverage.xml
cat coverage.xml
- name: Check Code Style with PHP CS Fixer
run: |
if [[ "${{ matrix.php-versions }}" != "8.4" ]]; then
composer cs-check
fi
- name: Analyze Code with PHPStan
run: vendor/bin/phpstan analyse --level=max --error-format=table --memory-limit=1G
- name: Perform Composer Security Audit
run: composer audit --format=table
- name: Normalize Composer Configuration
run: composer normalize --dry-run --no-check-lock