FFI config #104
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: Tests | |
on: [ push, pull_request ] | |
jobs: | |
run: | |
runs-on: ubuntu-22.04 | |
strategy: | |
fail-fast: false | |
matrix: | |
php: [ '8.1', '8.2', '8.3', '8.4' ] | |
stability: [ prefer-stable ] | |
container: | |
image: php:${{ matrix.php }}-cli | |
name: PHP ${{ matrix.php }} - ${{ matrix.stability }} | |
steps: | |
- name: Checkout project | |
uses: actions/checkout@v4 | |
- name: Install vips | |
run: apt update && apt install -y --no-install-recommends libvips42 libffi-dev libexif-dev zip unzip | |
- name: Setup PHP | |
run: ( curl -sSLf https://github.com/mlocati/docker-php-extension-installer/releases/latest/download/install-php-extensions -o - || echo 'return 1' ) | sh -s \ | |
@composer exif zip ffi | |
- name: FFI config | |
run: | | |
echo "zend.max_allowed_stack_size=-1" >> /usr/local/etc/php/conf.d/ffi.ini | |
echo "ffi.enable=true" >> /usr/local/etc/php/conf.d/ffi.ini | |
- name: Get composer cache directory | |
id: composer-cache | |
run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT | |
- name: Cache composer dependencies | |
uses: actions/cache@v4 | |
with: | |
path: ${{ steps.composer-cache.outputs.dir }} | |
key: ${{ runner.os }}-php-${{ matrix.php }}-composer-${{ matrix.stability }}-${{ hashFiles('**/composer.json') }} | |
restore-keys: ${{ runner.os }}-php-${{ matrix.php }}-composer-${{ matrix.stability }}- | |
- name: Install dependencies | |
run: composer update --${{ matrix.stability }} --prefer-dist --no-interaction | |
- name: Execute tests | |
run: vendor/bin/phpunit --no-coverage | |
- name: Run analyzer | |
run: vendor/bin/phpstan | |
- name: Validate coding standards | |
run: vendor/bin/phpcs |