Skip to content

Commit

Permalink
Update php_ci.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
AJenbo committed Jul 27, 2023
1 parent 6c85b7d commit bb4da1c
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions .github/workflows/php_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,12 +43,19 @@ jobs:
vendor/bin/psalm
vendor/bin/phpstan analyze
- name: After success
- name: Upload coverage results to Coveralls
env:
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}
run: |
php vendor/bin/php-coveralls --coverage_clover=build/logs/clover.xml -v
- name: Codecov
uses: codecov/codecov-action@v1.5.2
with:
files: build/logs/clover.xml

- name: After success
if: success()
run: |
php vendor/bin/php-coveralls
bash <(curl -s https://codecov.io/bash)
php vendor/bin/codacycoverage clover build/logs/clover.xml
./cc-test-reporter after-build --exit-code ${{ job.status }}

0 comments on commit bb4da1c

Please sign in to comment.