License Check #23
This file contains hidden or 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: License Check | |
| on: | |
| push: | |
| branches: [ '4.0', '4.1', '5.0', 'next' ] | |
| paths: | |
| - 'composer.json' | |
| - '*/**/composer.json' | |
| - '.github/workflows/license-check.yaml' | |
| pull_request_target: | |
| branches: [ '4.0', '4.1', '5.0', 'next' ] | |
| paths: | |
| - 'composer.json' | |
| - '*/**/composer.json' | |
| - '.github/workflows/license-check.yaml' | |
| release: | |
| types: [ created ] | |
| schedule: | |
| - cron: "0 1 * * 1" | |
| permissions: | |
| contents: read | |
| env: | |
| APP_ENV: "test" | |
| PIMCORE_TEST_DB_DSN: "mysql://root:[email protected]:3306/coreshop_test" | |
| PIMCORE_SECRET: "${{ secrets.PIMCORE_SECRET }}" | |
| PIMCORE_INSTALL_ENCRYPTION_SECRET: "${{ secrets.PIMCORE_SECRET }}" | |
| PIMCORE_INSTANCE_IDENTIFIER: "${{ secrets.PIMCORE_INSTANCE_IDENTIFIER }}" | |
| PIMCORE_INSTALL_INSTANCE_IDENTIFIER: "${{ secrets.PIMCORE_INSTANCE_IDENTIFIER }}" | |
| PIMCORE_INSTALL_PRODUCT_KEY: "${{ secrets.PIMCORE_PRODUCT_KEY }}" | |
| PIMCORE_PRODUCT_KEY: "${{ secrets.PIMCORE_PRODUCT_KEY }}" | |
| jobs: | |
| lint: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| php: [ 8.3, 8.4 ] | |
| pimcore: [ ^12.0 ] | |
| dependencies: [ highest ] | |
| services: | |
| database: | |
| image: "mysql:8" | |
| env: | |
| MYSQL_ROOT_PASSWORD: root | |
| MYSQL_DATABASE: coreshop_test | |
| ports: | |
| - 3306:3306 | |
| options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3 | |
| name: "${{ matrix.pimcore }}, PHP ${{ matrix.php }}, Deps ${{ matrix.dependencies }}" | |
| steps: | |
| - name: Checkout PR head (only for pull_request_target) | |
| if: github.event_name == 'pull_request_target' | |
| uses: actions/checkout@v4 | |
| with: | |
| ref: ${{ github.event.pull_request.head.ref }} | |
| repository: ${{ github.event.pull_request.head.repo.full_name }} | |
| - name: Checkout PR head (for push or other events) | |
| if: github.event_name != 'pull_request_target' | |
| uses: actions/checkout@v4 | |
| - name: Install PHP | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: ${{ matrix.php }} | |
| ini-values: display_errors=On, display_startup_errors=On, error_reporting=32767 | |
| extensions: intl, gd, simpleXML, dom, exif, fileinfo, iconv, mbstring, mysqli, pdo_mysql, zip, zlib | |
| - name: Validate composer.json and composer.lock | |
| run: composer validate | |
| - 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@v4 | |
| with: | |
| path: ${{ steps.composer-cache.outputs.dir }} | |
| key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }} | |
| restore-keys: ${{ runner.os }}-composer- | |
| - name: pimcore/pimcore | |
| run: composer req pimcore/pimcore:${{ matrix.pimcore }} --no-interaction --no-scripts --no-update | |
| - if: matrix.dependencies == 'highest' | |
| name: Install dependencies highest | |
| run: composer update --no-progress --prefer-dist --optimize-autoloader | |
| - if: matrix.dependencies == 'lowest' | |
| name: Install dependencies lowest | |
| run: composer update --no-progress --prefer-dist --optimize-autoloader --prefer-lowest | |
| - name: Check Licenses | |
| run: vendor/bin/composer-license-checker | |