-
Notifications
You must be signed in to change notification settings - Fork 3
50 lines (43 loc) · 1.52 KB
/
codacy.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
name: Codacy
on:
push:
branches:
- main
pull_request:
types: [opened, synchronize, reopened]
jobs:
codacy:
name: Codacy
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.sha }}
- name: Cache Composer dependencies
uses: actions/cache@v4
with:
path: /tmp/composer-cache
key: ${{ runner.os }}-${{ hashFiles('**/composer.lock') }}
- name: Install dependencies
uses: php-actions/composer@v6
- name: PHPUnit Tests
uses: php-actions/phpunit@v3
with:
version: 11
php_version: 8.3
php_extensions: xdebug
coverage_cobertura: coverage.xml
bootstrap: vendor/autoload.php
configuration: tests/phpunit.xml
test_suffix: Test.php
args: --coverage-filter src tests
env:
XDEBUG_MODE: coverage
- name: Fix code coverage paths
run: |
sed -i 's@'$GITHUB_WORKSPACE'@/github/workspace/@g' coverage.xml
- name: Run codacy-coverage-reporter
uses: codacy/codacy-coverage-reporter-action@v1
with:
project-token: ${{ secrets.CODACY_PROJECT_TOKEN }}
coverage-reports: coverage.xml