Skip to content

tests

tests #1956

Workflow file for this run

name: tests
on:
push:
pull_request:
schedule:
- cron: '0 0 * * *'
jobs:
tests:
strategy:
fail-fast: false
matrix:
php: [8.1, 8.2, 8.3]
os: [ubuntu-22.04]
stability: [prefer-lowest, 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: 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 --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