16 lines
399 B
YAML
16 lines
399 B
YAML
language: php
|
|
|
|
script:
|
|
- vendor/bin/phpunit --coverage-clover coverage.xml
|
|
|
|
after_success:
|
|
- bash <(curl -s https://codecov.io/bash)
|
|
steps:
|
|
- uses: actions/checkout@main
|
|
- uses: codecov/codecov-action@v1
|
|
with:
|
|
files: ./coverage1.xml,./coverage2.xml # optional
|
|
flags: unittests # optional
|
|
name: codecov-umbrella # optional
|
|
fail_ci_if_error: true # optional (default = false
|