fix for issue #68: send embed
and components
only if filled
#36
Workflow file for this run
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: PHP | |
on: [push, pull_request] | |
jobs: | |
run: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
max-parallel: 15 | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest] | |
php: ['7.2', '7.3', '7.4', '8.0', '8.1', '8.2'] | |
dependency-version: [prefer-stable] | |
name: PHP ${{ matrix.php }} - OS ${{ matrix.os }} - ${{ matrix.dependency-version }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@master | |
- name: Setup PHP | |
uses: shivammathur/setup-php@master | |
with: | |
php-version: ${{ matrix.php }} | |
extensions: mbstring | |
coverage: pcov | |
- name: Install dependencies | |
run: composer update --${{ matrix.dependency-version }} --no-interaction --prefer-dist | |
- name: Lint composer.json | |
run: composer validate | |
- name: Run Tests | |
run: vendor/bin/phpunit --coverage-text --coverage-clover=coverage.clover | |
- name: Upload Coverage to Scrutinizer | |
run: | | |
wget https://scrutinizer-ci.com/ocular.phar | |
php ocular.phar code-coverage:upload --format=php-clover coverage.clover | |
# Disable on PHP 8 as Ocular isn't supported | |
if: matrix.php < 8 |