[TASK] Ensure compatibility with all supported Symfony versions #282
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: Collmex PHP SDK Tests | |
on: | |
push: | |
branches: | |
- "**" | |
pull_request: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
php-version: | |
- "8.1" | |
- "8.2" | |
- "8.3" | |
composer-dependencies: | |
- "" | |
- "--prefer-lowest" | |
name: "collmex-php-sdk build - PHP ${{ matrix.php-version }} - Composer ${{ matrix.composer-dependencies }}" | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php-version }} | |
ini-file: development | |
coverage: xdebug | |
tools: pecl | |
extensions: curl,fileinfo,zip | |
- name: Validate composer.json and composer.lock | |
run: composer validate | |
- name: Cache Composer packages | |
id: composer-cache | |
uses: actions/cache@v4 | |
with: | |
path: vendor | |
key: ${{ runner.os }}-php-${{ matrix.php-version }}-${{ hashFiles('composer.json') }}-${{ matrix.composer-dependencies }} | |
restore-keys: | | |
${{ runner.os }}-php- | |
- name: Install dependencies | |
if: steps.composer-cache.outputs.cache-hit != 'true' | |
run: composer update --no-progress --prefer-stable --prefer-dist ${{ matrix.composer-dependencies }} | |
- name: Lint PHP Sources | |
run: composer run-script ci:lint | |
- name: PHP Code Sniffer | |
run: composer run-script ci:sniff | |
- name: Static Analysis | |
run: composer run-script ci:psalm | |
- name: Unit Tests | |
run: composer run-script ci:tests |