PHP Classes

File: .github/workflows/devel.yml

Recommend this page to a friend!
  Classes of Jose Luis Quintana   GImage PHP Canvas to Image   .github/workflows/devel.yml   Download  
File: .github/workflows/devel.yml
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: GImage PHP Canvas to Image
Create and compose canvas images from other images
Author: By
Last change:
Date: 1 year ago
Size: 819 bytes
 

Contents

Class file image Download
name: devel on: pull_request: push: branches: - master jobs: test: runs-on: ${{ matrix.os }} strategy: matrix: os: - ubuntu-20.04 php: - 7.4 - 8.0 - 8.1 dependency-version: - prefer-lowest - prefer-stable name: PHP ${{ matrix.php }} - ${{ matrix.os }} - ${{ matrix.dependency-version }} steps: - name: Checkout uses: actions/checkout@v3 - name: Setup PHP uses: shivammathur/setup-php@v2 with: php-version: ${{ matrix.php }} tools: composer:v2 coverage: none - name: Install dependencies run: composer update --${{ matrix.dependency-version }} --no-interaction --no-progress - name: Unit tests run: composer run-script test