|
14 | 14 | uses: shivammathur/setup-php@v2
|
15 | 15 | - name: Validate composer.json
|
16 | 16 | run: |
|
17 |
| - (cd src/Bundle && composer validate --strict --no-check-lock) |
| 17 | + (cd src/Framework/Symfony && composer validate --strict --no-check-lock) |
18 | 18 | tests:
|
19 | 19 | runs-on: ubuntu-20.04
|
20 | 20 | strategy:
|
@@ -50,16 +50,16 @@ jobs:
|
50 | 50 | with:
|
51 | 51 | php-version: ${{ matrix.php }}
|
52 | 52 | - run: |
|
53 |
| - sed -ri 's/"symfony\/(.+)": "(.+)"/"symfony\/\1": "'${{ matrix.symfony }}'"/' src/Bundle/composer.json; |
| 53 | + sed -ri 's/"symfony\/(.+)": "(.+)"/"symfony\/\1": "'${{ matrix.symfony }}'"/' src/Framework/Symfony/composer.json; |
54 | 54 | if: matrix.symfony
|
55 | 55 | - run: |
|
56 | 56 | composer config minimum-stability dev
|
57 | 57 | composer config prefer-stable true
|
58 | 58 | if: matrix.beta
|
59 | 59 | - run: |
|
60 |
| - (cd src/Bundle && composer update --prefer-dist --no-interaction --no-progress --ansi ${{ matrix.composer_option }}) |
| 60 | + (cd src/Framework/Symfony && composer update --prefer-dist --no-interaction --no-progress --ansi ${{ matrix.composer_option }}) |
61 | 61 | - run: |
|
62 |
| - (cd src/Bundle && vendor/bin/phpunit) |
| 62 | + (cd src/Framework/Symfony && vendor/bin/phpunit) |
63 | 63 | tests-windows:
|
64 | 64 | runs-on: windows-2022
|
65 | 65 | strategy:
|
@@ -95,13 +95,13 @@ jobs:
|
95 | 95 | with:
|
96 | 96 | php-version: ${{ matrix.php }}
|
97 | 97 | - run: |
|
98 |
| - (Get-Content composer.json) -replace '("symfony/[^"]+": )"[^"]+"', '$1"${{ matrix.symfony }}"' | Out-File -encoding ASCII src/Bundle/composer.json |
| 98 | + (Get-Content composer.json) -replace '("symfony/[^"]+": )"[^"]+"', '$1"${{ matrix.symfony }}"' | Out-File -encoding ASCII src/Framework/Symfony/composer.json |
99 | 99 | if: matrix.symfony
|
100 | 100 | - run: |
|
101 | 101 | composer config minimum-stability dev
|
102 | 102 | composer config prefer-stable true
|
103 | 103 | if: matrix.beta
|
104 | 104 | - run: |
|
105 |
| - {cd src/Bundle && composer update --prefer-dist --no-interaction --no-progress --ansi ${{ matrix.composer_option }}} |
| 105 | + {cd src/Framework/Symfony && composer update --prefer-dist --no-interaction --no-progress --ansi ${{ matrix.composer_option }}} |
106 | 106 | - run: |
|
107 |
| - {cd src/Bundle && vendor/bin/phpunit} |
| 107 | + {cd src/Framework/Symfony && vendor/bin/phpunit} |
0 commit comments