Update readme #2333
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: tests | |
on: | |
push: | |
pull_request: | |
schedule: | |
- cron: '0 0 * * *' | |
jobs: | |
tests: | |
strategy: | |
fail-fast: false | |
matrix: | |
php: [8.1, 8.2, 8.3, 8.4] | |
os: [ubuntu-22.04] | |
stability: [prefer-lowest, prefer-stable] | |
include: | |
- os: ubuntu-20.04 | |
php: 8.0 | |
stability: prefer-lowest | |
- os: ubuntu-20.04 | |
php: 8.0 | |
stability: prefer-stable | |
runs-on: ${{ matrix.os }} | |
name: PHP ${{ matrix.php }} - ${{ matrix.stability }} | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php }} | |
extensions: dom, curl, libxml, mbstring, zip | |
coverage: pcov | |
- name: Remove Security Advisories on obsolete PHP versions | |
run: composer remove "roave/security-advisories" --dev --no-update | |
if: matrix.php <= 7.4 | |
- name: Install dependencies | |
run: | |
composer update --${{ matrix.stability }} --prefer-dist --no-interaction --no-progress | |
- name: Install Scrutinizer/Ocular | |
run: | |
composer global require scrutinizer/ocular | |
- name: Execute tests | |
run: vendor/bin/phpunit --verbose --coverage-clover=coverage.clover | |
- name: Code coverage | |
if: ${{ github.ref == 'refs/heads/master' && github.repository == 'thephpleague/oauth2-server' }} | |
run: | |
~/.composer/vendor/bin/ocular code-coverage:upload --format=php-clover coverage.clover |