bug #1126 Fix detection of secondary rate limit (mathieudz) #518
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: CI | |
on: | |
[push, pull_request] | |
jobs: | |
test: | |
name: Test on PHP ${{ matrix.php-versions }} | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
php-versions: ['7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3'] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php-versions }} | |
coverage: none | |
- name: Install Composer Dependencies | |
uses: ramsey/composer-install@v2 | |
- name: Run phpunit | |
run: vendor/bin/phpunit --verbose | |
phpstan: | |
name: PHPStan | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: shivammathur/setup-php@v2 | |
with: | |
php-version: 7.2 | |
coverage: none | |
- name: Install Composer Dependencies | |
uses: ramsey/composer-install@v2 | |
- name: Run phpstan | |
run: vendor/bin/phpstan analyse --no-progress |