Skip to content

Fix GIF alpha handling on PHP8. Fixes #5 #27

Fix GIF alpha handling on PHP8. Fixes #5

Fix GIF alpha handling on PHP8. Fixes #5 #27

Workflow file for this run

name: Unit Tests
on: [push, pull_request]
jobs:
run:
name: PHP ${{ matrix.php-versions }}
runs-on: ubuntu-20.04
if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository
strategy:
matrix:
php-versions: ['7.2', '7.3', '7.4', '8.0']
fail-fast: false
steps:
- name: Checkout
uses: actions/checkout@v2
with:
lfs: true
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-versions }}
extensions: gd, exif
- name: Setup problem matchers
run: |
echo ::add-matcher::${{ runner.tool_cache }}/php.json
echo ::add-matcher::${{ runner.tool_cache }}/phpunit.json
- name: Setup Dependencies
run: |
composer update
composer install
convert --version
- name: Run PHPUnit
run: |
./vendor/bin/phpunit --verbose