-
-
Notifications
You must be signed in to change notification settings - Fork 33
74 lines (62 loc) · 1.92 KB
/
Test.yml
File metadata and controls
74 lines (62 loc) · 1.92 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
62
63
64
65
66
67
68
69
70
71
72
73
74
name: Test
on:
push:
paths:
- '**.php'
- 'composer.json'
branches:
- 'main'
pull_request:
paths:
- '**.php'
- 'composer.json'
workflow_dispatch:
jobs:
run:
runs-on: ubuntu-latest
strategy:
matrix:
php:
- '8.5'
name: PHP ${{ matrix.php }} Test
steps:
- name: Git checkout
uses: actions/checkout@v4
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
extensions: dom, json, mbstring, xml, xmlwriter
tools: phpcs
coverage: pcov
env:
COMPOSER_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Setup problem matchers for PHP syntax check
run: echo "::add-matcher::.github/php-syntax.json"
- run: |
! find . -type f -name '*.php' -exec php -l '{}' \; 2>&1 |grep -v '^No syntax errors detected'
- name: Setup problem matchers for PHPUnit
run: echo "::add-matcher::${{ runner.tool_cache }}/phpunit.json"
- name: Install dependencies
run: composer install --prefer-dist --no-interaction --no-progress
- name: Run phpcs
run: composer cs
- name: Run PHPStan
run: composer phpstan
- name: Execute tests
run: |
set +e
output=$(composer test -- --coverage-clover=coverage.xml 2>&1)
exit_code=$?
echo "$output"
# If the only issue is the cache directory warning, ignore the exit code.
if echo "$output" | grep -q "No cache directory configured, result of static analysis for code coverage will not be cached"; then
echo "Ignoring known PHPUnit warning about missing cache directory."
exit 0
else
exit $exit_code
fi
- name: Run codecov
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}