Update Changelog.md file #72
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: ci | |
on: | |
pull_request: | |
push: | |
branches: | |
- "master" | |
jobs: | |
run: | |
runs-on: ${{ matrix.operating-system }} | |
strategy: | |
matrix: | |
operating-system: ['ubuntu-latest'] | |
php-versions: ['8.1', '8.2'] | |
magento: ['2.4.4', '2.4.5', '2.4.6'] | |
coveralls: [ true ] | |
include: | |
- operating-system: 'ubuntu-latest' | |
php-versions: '8.1' | |
magento: '2.4.4' | |
coveralls: false | |
- operating-system: 'ubuntu-latest' | |
php-versions: '8.1' | |
magento: '2.4.5' | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v2 | |
- name: Configure PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php-versions }} | |
tools: composer:v2 | |
coverage: xdebug | |
extensions: bcmath, gd | |
- name: Install Composer dependencies | |
run: composer install | |
- name: Install Magento 2.4.4 | |
if: matrix.magento-versions == '2.4.4' | |
run: | | |
composer remove --no-update magento/framework magento/module-backend magento/module-customer magento/module-store magento/module-ui | |
composer require magento/framework:103.0.4 magento/module-backend:102.0.4 magento/module-customer:103.0.4 magento/module-store:101.1.4 magento/module-ui:101.2.4 | |
- name: Install Magento 2.4.5 | |
if: matrix.magento-versions == '2.4.5' | |
run: | | |
composer remove --no-update magento/framework magento/module-backend magento/module-customer magento/module-store magento/module-ui | |
composer require magento/framework:103.0.5 magento/module-backend:102.0.5 magento/module-customer:103.0.5 magento/module-store:101.1.5 magento/module-ui:101.2.5 | |
- name: Install Magento 2.4.6 | |
if: matrix.magento-versions == '2.4.6' | |
run: | | |
composer remove --no-update magento/framework magento/module-backend magento/module-customer magento/module-store magento/module-ui | |
composer require magento/framework:103.0.6 magento/module-backend:102.0.6 magento/module-customer:103.0.6 magento/module-store:101.1.6 magento/module-ui:101.2.6 | |
- name: Codesniffer | |
run: composer cs-check | |
- name: Static code analysis | |
if: matrix.coveralls == true | |
run: composer analyze | |
- name: Unittests | |
if: matrix.coveralls == false | |
run: composer test | |
- name: Unittests with coverage | |
if: matrix.coveralls == true | |
run: composer coverage | |
- name: Coveralls report | |
if: matrix.coveralls == true | |
env: | |
COVERALLS_REPO_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: ./vendor/bin/php-coveralls --coverage_clover=clover.xml -v |