Fix #10. Optimizing search results incl. using IdSearchResult() instance #17
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: Testing | |
on: | |
push: | |
branches: | |
- dev | |
- master | |
pull_request: | |
branches: | |
- dev | |
- master | |
workflow_dispatch: | |
env: | |
MODULE_NAME: MuckiSearchPlugin | |
COMPOSER_NAME: muckiware/search-plugin | |
TEST_DATABASE_URL: "mysql://root:root@127.0.0.1:3306/db_test" | |
jobs: | |
ci-current: | |
name: SW ${{ matrix.shopware-versions }}, PHP ${{ matrix.php-versions }}, MySQL ${{ matrix.mysql-versions }} | |
runs-on: ubuntu-latest | |
strategy: | |
max-parallel: 15 | |
fail-fast: false | |
matrix: | |
php-versions: [ '8.1', '8.2' ] | |
mysql-versions: [ '8.0' ] | |
shopware-versions: [ 'v6.5.3.0' ] | |
services: | |
mysql: | |
image: mysql:${{ matrix.mysql-versions }} | |
env: | |
MYSQL_DATABASE: db_test | |
MYSQL_ROOT_PASSWORD: root | |
ports: | |
- 3306:3306 | |
steps: | |
- name: Install PHP | |
uses: shivammathur/setup-php@master | |
with: | |
php-version: ${{ matrix.php-versions }} | |
extensions: mbstring, xdebug, curl, dom, fileinfo, gd, iconv, intl, json, xml, mbstring, pdo, phar, zip, sodium, pdo_mysql | |
tools: composer:2.6.6 | |
- name: "Check PHP Version" | |
run: php -v | |
- name: "Check Composer Version" | |
run: composer -V | |
- name: "Check PHP Extensions" | |
run: php -m | |
- name: "checkout Shopware" | |
uses: actions/checkout@v3 | |
with: | |
repository: shopware/production | |
ref: 'flex' | |
- name: "Checkout ${{ env.COMPOSER_NAME }}" | |
uses: actions/checkout@v3 | |
with: | |
path: custom/plugins/${{ env.MODULE_NAME }} | |
- name: "Get composer cache directory" | |
id: composer-cache | |
run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT | |
- name: "Cache Composer dependencies" | |
uses: actions/cache@v3 | |
with: | |
path: ${{ steps.composer-cache.outputs.dir }} | |
key: ${{ matrix.operating-system }}-${{ matrix.php-versions }}-${{ matrix.shopware-versions }}-${{ hashFiles('**/composer.lock') }} | |
- name: "Install Shopware dependencies" | |
# Install Shopware with --no-dev to prevent that dev-tools of the module got in conflict with the tools of shopware | |
run: | | |
composer req shopware/administration:${{ matrix.shopware-versions }} shopware/core:${{ matrix.shopware-versions }} shopware/elasticsearch:${{ matrix.shopware-versions }} shopware/storefront:${{ matrix.shopware-versions }} --no-update | |
composer install --no-dev | |
- name: "Install DEV-Tools" | |
working-directory: custom/plugins/${{ env.MODULE_NAME }} | |
run: | | |
composer remove shopware/* --no-update | |
composer install | |
- name: "Install code-Tools" | |
run: composer req phpunit/phpunit:^9.5 phpstan/phpstan | |
- name: "Install Shopware" | |
run: | | |
echo APP_ENV=dev >> .env | |
echo APP_URL=http://localhost >> .env | |
echo DATABASE_URL=${{ env.TEST_DATABASE_URL }} >> .env | |
echo APP_SECRET=secretf0rt3st >> .env | |
bin/console system:install --basic-setup | |
- name: "Run PHPUnit Tests" | |
run: ./vendor/bin/phpunit --configuration="custom/plugins/${{ env.MODULE_NAME }}" | |