Skip to content

Commit

Permalink
Fix workflow files
Browse files Browse the repository at this point in the history
  • Loading branch information
paulbalandan committed Aug 3, 2024
1 parent 9a1ecb0 commit b40f895
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .github/workflows/prune-actions-caches.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@ jobs:
runs-on: ubuntu-24.04

steps:
- name: Checkout
uses: actions/checkout@v4

- name: Run prune-cache script
run: |
bin/prune-cache $REPO --pr-branch $BRANCH
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,10 +63,11 @@ jobs:
run: composer update --ansi --no-scripts

- name: Run Unit Tests
shell: bash
run: |
bin/parallel-phpunit ${{ env.COVERAGE_OPTION }}
env:
COVERAGE_OPTION: ${{ matrix.os == 'windows-2022' && '' || '--coverage' }}
COVERAGE_OPTION: ${{ matrix.os != 'windows-2022' && '--coverage' || '' }}

- name: Display structure of coverage files
if: matrix.os != 'windows-2022'
Expand Down

0 comments on commit b40f895

Please sign in to comment.