Improve I18N Issues based on 1.5.5 #35
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
name: Check PHP syntax | |
on: [ push, pull_request ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
php-versions: ['7.4', '8.0', '8.1', '8.2', '8.3', 'highest'] | |
steps: | |
# Install PHP interpreter | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php-versions }} | |
ini-file: development | |
# Checkout source repository | |
- name: checkout repo | |
uses: actions/checkout@v3 | |
# Lint every PHP source file using PHP interpreter | |
- run: composer run check-syntax |