-
Notifications
You must be signed in to change notification settings - Fork 1
62 lines (51 loc) · 1.87 KB
/
test-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
54
55
56
57
58
59
60
name: Executing Code Coverage
on:
push:
branches:
- main
- develop
- features/**
- test/**
pull_request:
branches:
- main
- develop
- features/**
env:
REQUIRED_PHP_EXTENSIONS: "ctype, filter, hash, iconv, json"
jobs:
checks:
runs-on: ubuntu-latest
strategy:
matrix:
operating-system: [ 'ubuntu-latest']
php-versions: [ '8.4' ]
dependency-stability: [ 'prefer-none' ]
name: P${{ matrix.php-versions }} - ${{ matrix.operating-system}}
steps:
- uses: actions/checkout@v4
- name: Install PHP versions
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-versions }}
extensions: dom, curl, libxml, mbstring, zip, pcntl, bcmath, soap, intl, iconv, fileinfo
coverage: "pcov"
tools: "composer:v2"
- name: Install Dependencies
run: composer install --prefer-dist --no-interaction
- name: Show dir
run: pwd
- name: PHP Version
run: php --version
- name: Platform check
run: composer check-platform-reqs
- name: running tests
run: "vendor/bin/pest --configuration=phpunit.xml.dist --coverage-clover=.build/logs/clover.xml"
- name: 'Upload coverage reports to Codecov'
env:
my_codecov_token: ${{ secrets.CODECOV_TOKEN }}
if: ${{ env.my_codecov_token != '' && hashFiles('./.build/logs/clover.xml')!= '' }}
uses: 'codecov/[email protected]'
with:
files: './.build/logs/clover.xml'
token: ${{ env.my_codecov_token }}