add support for endroid/qr-code (with logo) version 6 (#143) #131
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: Test Endroid QR Code Provider | |
on: | |
push: | |
pull_request: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
php-version: ['8.2', '8.3'] | |
endroid-version: ["^3","^4","^5","^6"] | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php-version }} | |
tools: composer | |
coverage: xdebug | |
ini-values: error_reporting=E_ALL | |
- uses: ramsey/composer-install@v3 | |
- run: composer require endroid/qrcode:${{ matrix.endroid-version }} -W | |
- run: composer lint-ci | |
- run: composer test testsDependency/EndroidQRCodeTest.php |