Updated broken links. #11
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: Review changes on Dev (Commits/PRs) | |
| on: | |
| push: | |
| branches: ['master'] | |
| pull_request: | |
| branches: ['dev'] | |
| types: [opened, synchronize, reopened] | |
| env: | |
| WP_MIN_SUPPORTED_VERSION: '6.0' | |
| PHP_MIN_SUPPORTED_VERSION: '7.4' | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| generate-wp-compat-matrix: | |
| name: 'Generate the matrix for wordpress compatibility dynamically' | |
| runs-on: ubuntu-20.04 | |
| outputs: | |
| matrix: ${{ steps.generate_matrix.outputs.matrix }} | |
| steps: | |
| - name: 'Generate matrix' | |
| id: generate_matrix | |
| run: | | |
| MATRIX_INCLUDE=$( echo "[{\"wordpress\":\"$WP_MIN_SUPPORTED_VERSION\",\"gutenberg\":\"13.6.0\",\"php\":\"$PHP_MIN_SUPPORTED_VERSION\"}]" ) | |
| echo "matrix={\"wordpress\":[\"latest\"],\"gutenberg\":[\"latest\"],\"php\":[\"7.4\"], \"include\":$MATRIX_INCLUDE}" >> $GITHUB_OUTPUT | |
| phpcs: | |
| name: PHPCS | |
| strategy: | |
| matrix: | |
| operating-system: ['ubuntu-latest'] | |
| php-versions: ['7.4', '8.0', '8.1'] | |
| phpunit-versions: ['7.5.20'] | |
| runs-on: ${{ matrix.operating-system }} | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v3 | |
| - name: 'Validate composer.json and composer.lock' | |
| run: composer validate --strict | |
| - name: Setup PHP | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: ${{ matrix.php-versions }} | |
| ini-values: 'memory_limit=1G' | |
| coverage: none | |
| tools: cs2pr | |
| - name: Install Composer dependencies | |
| uses: 'ramsey/composer-install@v2' | |
| - name: Run PHPCS checks | |
| continue-on-error: true | |
| run: vendor/bin/phpcs --ignore=*/tests/*,*/data/*,*/assets/* --report-full . | |
| - name: Git Blame | |
| continue-on-error: true | |
| run: vendor/bin/phpcs -s --report=gitblame --ignore=*/tests/*,*/data/*,*/assets/* . | |
| - name: Run WordPress Checks | |
| continue-on-error: true | |
| run: composer run standards:check |