Changeset 13851
- Timestamp:
- 05/04/2024 01:12:23 PM (6 months ago)
- Location:
- trunk/.github/workflows
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/.github/workflows/coding-standards.yml
r13850 r13851 7 7 name: PHPCS 8 8 runs-on: ubuntu-latest 9 strategy:10 fail-fast: true11 matrix:12 php: ['8.2']13 9 14 10 steps: … … 25 21 uses: shivammathur/setup-php@v2 26 22 with: 27 php-version: ${{ matrix.php }} 23 php-version: 8.3 24 coverage: none 28 25 tools: composer:v2 29 coverage: none 26 27 - name: Validate Composer 28 run: composer validate --strict 30 29 31 30 - name: Install dependencies 32 31 uses: ramsey/composer-install@v2 33 with:34 composer-options: "--ignore-platform-reqs"35 32 36 33 - name: Run PHPCS Escape -
trunk/.github/workflows/unit-tests.yml
r13796 r13851 17 17 fail-fast: false 18 18 matrix: 19 php: ['7.4', '8.0', '8.1', '8.2' ]19 php: ['7.4', '8.0', '8.1', '8.2', '8.3'] 20 20 wp_version: ['master'] 21 21 include: … … 39 39 uses: actions/checkout@v3 40 40 41 - name: Check Gitignored files 42 run: if [[ ! -z $(git ls-files -i --exclude-standard) ]]; then exit 1; fi 43 41 44 - name: Setup PHP 42 45 uses: shivammathur/setup-php@v2 43 46 with: 44 47 php-version: ${{ matrix.php }} 48 extensions: gd, imagick, mysql, zip 49 coverage: none 45 50 tools: composer:v2 46 coverage: none47 51 48 52 - name: Set up Node.js
Note: See TracChangeset
for help on using the changeset viewer.