|
| 1 | +diff --git a/.github/workflows/phpunit-mariadb.yml b/.github/workflows/phpunit-mariadb.yml |
| 2 | +index 2e7b92b0..5d69d19c 100644 |
| 3 | +--- a/.github/workflows/phpunit-mariadb.yml |
| 4 | ++++ b/.github/workflows/phpunit-mariadb.yml |
| 5 | +@@ -105,6 +105,14 @@ jobs: |
| 6 | + persist-credentials: false |
| 7 | + path: apps/${{ env.APP_NAME }} |
| 8 | + |
| 9 | ++ - name: Checkout teams dependency |
| 10 | ++ uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 |
| 11 | ++ with: |
| 12 | ++ persist-credentials: false |
| 13 | ++ repository: nextcloud/circles |
| 14 | ++ ref: ${{ matrix.server-versions }} |
| 15 | ++ path: apps/circles |
| 16 | ++ |
| 17 | + - name: Set up php ${{ matrix.php-versions }} |
| 18 | + uses: shivammathur/setup-php@f3e473d116dcccaddc5834248c87452386958240 # 2.37.2 |
| 19 | + with: |
| 20 | +@@ -160,7 +168,7 @@ jobs: |
| 21 | + # Only run if phpunit config file exists |
| 22 | + if: steps.check_phpunit.outcome == 'success' |
| 23 | + working-directory: apps/${{ env.APP_NAME }} |
| 24 | +- run: composer run test:unit |
| 25 | ++ run: composer run test:unit -- --no-coverage |
| 26 | + |
| 27 | + - name: Check PHPUnit integration script is defined |
| 28 | + id: check_integration |
| 29 | +@@ -178,7 +186,7 @@ jobs: |
| 30 | + # Only run if phpunit integration config file exists |
| 31 | + if: steps.check_integration.outcome == 'success' |
| 32 | + working-directory: apps/${{ env.APP_NAME }} |
| 33 | +- run: composer run test:integration |
| 34 | ++ run: composer run test:integration -- --no-coverage |
| 35 | + |
| 36 | + - name: Print logs |
| 37 | + if: always() |
0 commit comments