-
-
Notifications
You must be signed in to change notification settings - Fork 0
53 lines (42 loc) · 1.32 KB
/
codacy-coverage.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
name: Codacy coverage
on:
push:
branches:
- main
jobs:
coverage:
env:
DB_CONNECTION: sqlite
SESSION_DRIVER: array
DB_DATABASE: ":memory:"
APP_KEY: base64:1NxfrNErQ0vo1ZnPcLeVhnE7tOZdKlKiFORzPA92krM=
runs-on: ubuntu-latest
name: Checkout
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: "8.2"
extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite, bcmath, soap, intl, gd, exif, iconv, imagick, fileinfo
coverage: pcov
- name: Setup problem matchers
run: |
echo "::add-matcher::${{ runner.tool_cache }}/php.json"
echo "::add-matcher::${{ runner.tool_cache }}/phpunit.json"
- name: Remove PHP-PSR Extension
run: |
sudo apt remove php8.2-psr
- name: Install dependencies
run: |
composer update
- name: List Installed Dependencies
run: composer show -D
- name: Execute tests
run: vendor/bin/pest --coverage-clover clover.xml
- name: Run codacy-coverage-reporter
uses: codacy/codacy-coverage-reporter-action@v1
with:
api-token: ${{ secrets.CODACY }}
coverage-reports: clover.xml