PHP Classes

File: .github/workflows/CI.yml

Recommend this page to a friend!
  Packages of Amirreza Ebrahimi   HeroQR Powerful PHP QR Code Library to generate PNG, SVG, PDF, Logos Ready to Use with Laravel   .github/workflows/CI.yml   Download  
File: .github/workflows/CI.yml
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: HeroQR Powerful PHP QR Code Library to generate PNG, SVG, PDF, Logos Ready to Use with Laravel
Generate QR code images in several formats
Author: By
Last change:
Date: 22 days ago
Size: 661 bytes
 

Contents

Class file image Download
name: CI on: push: branches: [ main ] pull_request: branches: [ main ] jobs: build: runs-on: ubuntu-latest strategy: matrix: php: [8.2, 8.3, 8.4] steps: - name: Checkout repository uses: actions/checkout@v4 - name: Set up PHP uses: shivammathur/setup-php@v2 with: php-version: ${{ matrix.php }} extensions: mbstring, xml, gd, curl, intl coverage: none - name: Install Composer dependencies run: composer install --prefer-dist --no-progress - name: Run PHPUnit run: vendor/bin/phpunit --bootstrap vendor/autoload.php tests