V1.7.1 Fix curcular creation proxy #54
This file contains hidden or 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: Plugin CI | |
on: | |
push: | |
branches: [ 'master' ] | |
pull_request: | |
jobs: | |
tests: | |
name: "Tests ${{ matrix.php-version }} deps ${{ matrix.dependency-versions }}" | |
runs-on: ubuntu-22.04 | |
strategy: | |
fail-fast: false | |
matrix: | |
# normal, highest, non-dev installs | |
php-version: [ '8.4' ] | |
dependency-versions: [ 'highest' ] | |
include: | |
# testing dev versions with the highest PHP | |
- php-version: '8.4' | |
dependency-versions: 'highest' | |
steps: | |
- name: "Checkout code" | |
uses: "actions/checkout@v2" | |
- name: "Install PHP" | |
uses: "shivammathur/setup-php@v2" | |
with: | |
coverage: "xdebug" | |
php-version: "${{ matrix.php-version }}" | |
- name: "Composer install" | |
uses: "ramsey/composer-install@v2" | |
with: | |
dependency-versions: "${{ matrix.dependency-versions }}" | |
composer-options: "--prefer-dist --no-progress" | |
- name: "Run tests" | |
run: "composer coverage-html" |