Fully supports progressive JPGS and Interlaced images for 3.x #206
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: glide | |
on: | |
pull_request: ~ | |
push: | |
branches: | |
- 3.x | |
jobs: | |
coding-style: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: shivammathur/setup-php@v2 | |
with: | |
php-version: '8.3' | |
extensions: gd, imagick | |
- name: php-cs-fixer | |
run: | | |
composer update --no-interaction --no-ansi --no-progress | |
vendor/bin/php-cs-fixer fix --dry-run --diff | |
tests: | |
runs-on: ubuntu-22.04 | |
strategy: | |
fail-fast: false | |
matrix: | |
php-version: ['8.1', '8.2', '8.3', '8.4'] | |
prefer-lowest: [''] | |
include: | |
- php-version: '8.1' | |
prefer-lowest: 'prefer-lowest' | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php-version }} | |
extensions: gd, imagick | |
coverage: pcov | |
- name: Composer | |
run: | | |
if ${{ matrix.prefer-lowest == 'prefer-lowest' }}; then | |
composer update --no-interaction --no-ansi --no-progress --prefer-lowest | |
else | |
composer update --no-interaction --no-ansi --no-progress | |
fi | |
- name: PHPUnit | |
run: | | |
if [[ ${{ matrix.php-version }} == '8.3' ]]; then | |
vendor/bin/phpunit --display-incomplete --display-skipped --coverage-clover=coverage.xml | |
else | |
vendor/bin/phpunit | |
fi | |
- name: Code Coverage Report | |
if: matrix.php-version == '8.3' | |
uses: codecov/codecov-action@v3 | |
psalm: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: shivammathur/setup-php@v2 | |
with: | |
php-version: '8.3' | |
extensions: gd, imagick | |
tools: vimeo/psalm:5 | |
- name: psalm | |
run: | | |
composer update --no-interaction --no-ansi --no-progress | |
psalm --output-format=github |