Skip to content

Commit 0ab0e64

Browse files
committed
update tests CI job adding coverage flags
1 parent d7135c6 commit 0ab0e64

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

.github/workflows/tests.yml

+7-6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: tests
22

3-
on: [ push, pull_request ]
3+
on: [push, pull_request]
44

55
jobs:
66
test:
@@ -9,10 +9,10 @@ jobs:
99
strategy:
1010
fail-fast: true
1111
matrix:
12-
os: [ ubuntu-latest ]
13-
php: [ 8.1, 8.2, 8.3 ]
14-
stability: [ prefer-stable ]
15-
laravel: [ 10.*, 11.* ]
12+
os: [ubuntu-latest]
13+
php: [8.1, 8.2, 8.3]
14+
stability: [prefer-stable]
15+
laravel: [10.*, 11.*]
1616
include:
1717
- laravel: 10.*
1818
testbench: 8.*
@@ -55,9 +55,10 @@ jobs:
5555
run: vendor/bin/phpunit -c phpunit.coverage.dist.xml
5656

5757
- name: 🚀 Upload coverage reports to Codecov
58-
uses: codecov/codecov-action@v4
58+
uses: codecov/codecov-action@v5
5959
with:
6060
token: ${{ secrets.CODECOV_TOKEN }}
61+
flags: php${{ matrix.php }}-laravel${{ matrix.laravel }}
6162
files: ./clover.xml
6263
fail_ci_if_error: true
6364
# verbose: true

0 commit comments

Comments
 (0)