Release v9.20.15 #13229
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: Main CI workflow | |
| on: | |
| push: | |
| branches: [main-9] | |
| pull_request: | |
| workflow_dispatch: | |
| # Default minimal permissions | |
| permissions: | |
| contents: read | |
| jobs: | |
| build: | |
| if: github.event_name == 'workflow_dispatch' || | |
| github.event_name == 'push' || | |
| (github.event_name == 'pull_request' && | |
| github.event.pull_request.head.repo.full_name == github.repository) | |
| strategy: | |
| matrix: | |
| php-version: ["8.2", "8.3"] | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 25 | |
| permissions: | |
| contents: read | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@1e31de5234b9f8995739874a8ce0492dc87873e2 | |
| - name: Use PHP ${{ matrix.php-version }} | |
| uses: shivammathur/setup-php@44454db4f0199b8b9685a5d763dc37cbf79108e1 | |
| with: | |
| php-version: ${{ matrix.php-version }} | |
| tools: composer:v2 | |
| - name: Test plugin installation | |
| run: | | |
| echo "{\"http-basic\":{\"repo.magento.com\":{\"username\":\"${MAGENTO_USERNAME}\",\"password\":\"${MAGENTO_PASSWORD}\"}}}" > auth.json | |
| composer install --prefer-dist | |
| env: | |
| CI: true | |
| MAGENTO_USERNAME: ${{ secrets.MAGENTO_USERNAME }} | |
| MAGENTO_PASSWORD: ${{ secrets.MAGENTO_PASSWORD }} | |
| - name: Code Sniffer | |
| run: vendor/bin/phpcs . | |
| - name: Run PHPUnit | |
| run: vendor/bin/phpunit --coverage-clover=build/clover.xml --log-junit=build/tests-log.xml -c Test/phpunit.xml Test/Unit | |
| - name: Fix code coverage paths | |
| run: sed -i "s;`pwd`/;;g" build/*.xml | |
| - name: SonarCloud Scan | |
| if: ${{ env.SONAR_TOKEN }} | |
| uses: SonarSource/sonarqube-scan-action@a31c9398be7ace6bbfaf30c0bd5d415f843d45e9 | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} |