Increase CURL connection timeout to 30 minutes for improved reliability #347
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: Validate/Lint | |
| on: [push, pull_request] | |
| permissions: | |
| contents: read | |
| jobs: | |
| build: | |
| runs-on: ${{ matrix.operating-system }} | |
| strategy: | |
| matrix: | |
| operating-system: [ubuntu-latest] | |
| php-versions: ['8.0', '8.1', '8.2', '8.3', '8.4'] | |
| name: PHP ${{ matrix.php-versions }} on ${{ matrix.operating-system }} | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Set up PHP | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: ${{ matrix.php-versions }} | |
| extensions: pcre | |
| - name: Lint | |
| run: | | |
| lintPaths=() | |
| lintPaths+=("${GITHUB_WORKSPACE}") | |
| for lintPath in "${lintPaths[@]}" | |
| do | |
| for file in `find "$lintPath"` | |
| do | |
| EXTENSION="${file##*.}" | |
| if [ "$EXTENSION" == "php" ] || [ "$EXTENSION" == "phtml" ] | |
| then | |
| RESULTS=`php -l "$file"` | |
| if [ "$RESULTS" != "No syntax errors detected in $file" ] | |
| then | |
| echo $RESULTS | |
| fi | |
| fi | |
| done | |
| done |