-
-
Notifications
You must be signed in to change notification settings - Fork 7
40 lines (37 loc) · 1.29 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
name: CI
on: [push, pull_request, pull_request_target]
jobs:
build-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: 8.2
coverage: pcov
- name: Install PHP Dependencies
run: composer install --no-interaction --prefer-dist --optimize-autoloader
- name: PHPStan Analysis
run: vendor/bin/phpstan analyse -c phpstan.neon
- name: PHPUnit
run: php -d pcov.enabled=1 -d pcov.directory=. -d pcov.exclude="~vendor~" vendor/bin/phpunit
- name: Archive code coverage results
uses: actions/upload-artifact@v4
with:
name: code-coverage-report
path: tests/resources/clover.xml
- name: Check test coverage
id: test-coverage
uses: johanvanhelden/gha-clover-test-coverage-check@v1
with:
percentage: "100"
filename: "./tests/resources/clover.xml"
- name: phpunit-coverage-badge
uses: timkrase/[email protected]
with:
report: ./tests/resources/clover.xml
report_type: clover
coverage_badge_path: ./.github/coverage.svg
push_badge: true
repo_token: ${{ secrets.GITHUB_TOKEN }}