-
-
Notifications
You must be signed in to change notification settings - Fork 7
42 lines (39 loc) · 1.23 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
name: CI
on: [push, pull_request, pull_request_target]
jobs:
build-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install dependencies
uses: php-actions/composer@v6
with:
php_version: "8.2"
- name: PHPUnit Tests
uses: php-actions/phpunit@v3
with:
php_version: "8.2"
php_extensions: pcov
bootstrap: vendor/autoload.php
configuration: phpunit.xml
memory_limit: 1G
test_suffix: Test.php
- 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 }}