chore: Prepare release #171
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: Run plugin workflow | |
on: | |
pull_request: | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
schedule: | |
- cron: '01 01 * * *' | |
jobs: | |
call-test-workflow: | |
strategy: | |
matrix: | |
include: | |
- shopware-version: 'v5.7.4' | |
php-version: '8.0' | |
mysql-version: '8.0' | |
- shopware-version: '5.7' | |
php-version: '7.4' | |
mysql-version: '8.0' | |
- shopware-version: '5.7' | |
php-version: '8.2' | |
mysql-version: '8.0' | |
uses: shopware5/docker-images-testing/.github/workflows/php-unit-tests-shopware.yml@main | |
with: | |
plugin-name: SwagImportExport | |
php-version: ${{ matrix.php-version }} | |
shopware-version: ${{ matrix.shopware-version }} | |
mysql-version: ${{ matrix.mysql-version }} | |
call-analyse-workflow: | |
name: Analyse code for SwagImportExport | |
uses: shopware5/docker-images-testing/.github/workflows/php-code-analysis.yml@main | |
with: | |
plugin-name: SwagImportExport | |
call-javascript-workflow: | |
name: Analyse Javascript Code for SwagImportExport | |
uses: shopware5/docker-images-testing/.github/workflows/javascript-analysis.yml@main | |
with: | |
plugin-name: SwagImportExport |