Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
SkyFoxvn committed Sep 28, 2023
1 parent 5326664 commit 7f312d3
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/CI 6.0.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
coverage: pcov

- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
token: ${{ secrets.MY_PAT }}

Expand All @@ -36,7 +36,7 @@ jobs:
run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT

- name: Composer cache dependencies
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: ${{ steps.composer-cache.outputs.dir }}
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }}
Expand All @@ -54,9 +54,9 @@ jobs:
run: vendor/bin/phpunit --verbose --coverage-clover=Tests/coverage.xml

- name: Code Coverage Report
uses: codecov/codecov-action@v2
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
file: Tests/coverage.xml
files: ./Tests/coverage.xml
fail_ci_if_error: true
verbose: true

0 comments on commit 7f312d3

Please sign in to comment.