Use ramsey/composer-install action #9707
Workflow file for this run
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: Run unit tests | |
on: [push, pull_request] | |
permissions: | |
contents: read | |
jobs: | |
lint: | |
name: Check PHP syntax | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set up PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: '7.4' | |
tools: composer:v2 | |
coverage: none | |
env: | |
fail-fast: true | |
- uses: actions/checkout@v4 | |
- name: Install Dependencies | |
uses: ramsey/composer-install@v3 | |
env: | |
COMPOSER_ROOT_VERSION: dev-master | |
- run: | | |
git ls-files -- '*.php' ':!:dictionaries/scripts/*' | ./vendor/bin/parallel-lint --stdin | |
code-style: | |
name: Code Style Analysis | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set up PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: '7.4' | |
tools: composer:v2 | |
coverage: none | |
env: | |
fail-fast: true | |
- uses: actions/checkout@v4 | |
- name: Install Dependencies | |
uses: ramsey/composer-install@v3 | |
env: | |
COMPOSER_ROOT_VERSION: dev-master | |
- name: Code Style Analysis with PHPCS | |
run: vendor/bin/phpcs -d memory_limit=512M | |
chunk-matrix: | |
permissions: | |
contents: none | |
name: Generate Chunk Matrix | |
runs-on: ubuntu-latest | |
env: | |
CHUNK_COUNT: 8 | |
outputs: | |
count: ${{ steps.chunk-matrix.outputs.count }} | |
chunks: ${{ steps.chunk-matrix.outputs.chunks }} | |
steps: | |
- id: chunk-matrix | |
name: Generates the Chunk Matrix | |
run: | | |
echo "count=$(php -r 'echo json_encode([ ${{ env.CHUNK_COUNT }} ]);')" >> $GITHUB_OUTPUT | |
echo "chunks=$(php -r 'echo json_encode(range(1, ${{ env.CHUNK_COUNT }} ));')" >> $GITHUB_OUTPUT | |
tests: | |
name: "Unit Tests - PHP ${{ matrix.php-version }} ${{ matrix.chunk }}/${{ matrix.count }}" | |
runs-on: ubuntu-latest | |
needs: | |
- chunk-matrix | |
strategy: | |
fail-fast: false | |
matrix: | |
php-version: | |
- "8.0" | |
- "8.1" | |
- "8.2" | |
- "8.3" | |
count: ${{ fromJson(needs.chunk-matrix.outputs.count) }} | |
chunk: ${{ fromJson(needs.chunk-matrix.outputs.chunks) }} | |
env: | |
CHUNK_COUNT: "${{ matrix.count }}" | |
CHUNK_NUMBER: "${{ matrix.chunk }}" | |
PARALLEL_PROCESSES: 5 | |
BRANCH_NAME: ${{ github.head_ref || github.ref_name }} | |
steps: | |
- name: Set up PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: "${{ matrix.php-version }}" | |
ini-values: zend.assertions=1, assert.exception=1, opcache.enable_cli=1, opcache.jit=function, opcache.jit_buffer_size=512M | |
tools: composer:v2 | |
coverage: none | |
extensions: none, curl, dom, filter, intl, json, libxml, mbstring, opcache, openssl, pcre, phar, reflection, simplexml, spl, tokenizer, xml, xmlwriter | |
env: | |
fail-fast: true | |
- uses: actions/checkout@v4 | |
- name: Install Dependencies | |
uses: ramsey/composer-install@v3 | |
env: | |
COMPOSER_ROOT_VERSION: dev-master | |
- name: Run unit tests | |
run: bin/tests-github-actions.sh |