Lite Version: Add Currency Settings to Number Field and Apply Enhancements #3256
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
on: | |
# Trigger the workflow on push or pull request, | |
# but only for the main branch | |
push: | |
branches: | |
- master | |
pull_request: | |
types: [ opened, labeled, synchronize ] | |
name: PHP Syntax Check | |
jobs: | |
runPHPSyntaxCheck: | |
if: contains(github.event.pull_request.labels.*.name, 'run analysis') | |
name: Run PHP Syntax inspection | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
include: | |
- php: 7.0 | |
- php: 8.3 | |
steps: | |
- uses: actions/[email protected] | |
- uses: shivammathur/[email protected] | |
with: | |
php-version: ${{ matrix.php }} | |
- name: Check PHP ${{ matrix.multisite }} syntax | |
run: find -L . -path ./vendor -prune -o -path ./tests -prune -o -name '*.php' -print0 | xargs -0 -n 1 -P 4 php -l |