|
11 | 11 | strategy: |
12 | 12 | matrix: |
13 | 13 | operating-system: ['ubuntu-latest'] |
14 | | - php-versions: ['7.4', '7.4'] |
15 | | - coveralls: [false, true] |
| 14 | + php-versions: ['7.4'] |
| 15 | + magento: ['2.3.7-p2', '2.4.0', '2.4.1', '2.4.2', '2.4.2-p1', '2.4.2-p2', '2.4.3', '2.4.3-p1'] |
| 16 | + coveralls: [ false ] |
| 17 | + include: |
| 18 | + - php-versions: ['8.0', '8.1'] |
| 19 | + magento: '2.4.4' |
16 | 20 | steps: |
17 | 21 | - name: Checkout repo |
18 | 22 | uses: actions/checkout@v2 |
|
28 | 32 | - name: Install Composer dependencies |
29 | 33 | run: composer install |
30 | 34 |
|
| 35 | + - name: Install Magento 2.3.7-p2 |
| 36 | + if: matrix.magento == '2.3.7-p2' |
| 37 | + run: composer update --with-dependencies magento/framework:102.0.7-p2 magento/module-webapi:100.3.6-p2 infection/infection:0.22.0 n98/magerun2:4.5.0 |
| 38 | + |
| 39 | + - name: Install Magento 2.4.0 |
| 40 | + if: matrix.magento == '2.4.0' |
| 41 | + run: composer update --with-dependencies magento/framework:103.0.0 |
| 42 | + |
| 43 | + - name: Install Magento 2.4.1 |
| 44 | + if: matrix.magento == '2.4.1' |
| 45 | + run: composer update --with-dependencies magento/framework:103.0.1 |
| 46 | + |
| 47 | + - name: Install Magento 2.4.2 |
| 48 | + if: matrix.magento == '2.4.2' |
| 49 | + run: composer update --with-dependencies magento/framework:103.0.2 |
| 50 | + |
| 51 | + - name: Install Magento 2.4.3 |
| 52 | + if: matrix.magento == '2.4.3' |
| 53 | + run: composer update --with-dependencies magento/framework:103.0.3 |
| 54 | + |
| 55 | + - name: Install Magento 2.4.4 |
| 56 | + if: matrix.magento == '2.4.4' |
| 57 | + run: composer update --with-dependencies magento/framework:103.0.4 |
| 58 | + |
31 | 59 | - name: Composer license check |
32 | 60 | run: composer check-license |
33 | 61 |
|
|
0 commit comments