PHPPresentation Sync Check #233
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: PHPPresentation | |
on: [push, pull_request] | |
jobs: | |
phpstan: | |
name: PHP Static Analysis | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
php: ['8.1'] | |
steps: | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php }} | |
extensions: gd, xml, zip | |
- uses: actions/checkout@v2 | |
- name: Composer Install | |
run: composer install --ansi --prefer-dist --no-interaction --no-progress | |
- name: Run phpstan | |
run: ./vendor/bin/phpstan analyse -c phpstan.neon.dist | |
phpunit: | |
name: PHPUnit | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
php: ['8.1'] | |
steps: | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php }} | |
extensions: gd, xml, zip | |
coverage: xdebug | |
- uses: actions/checkout@v2 | |
- name: Composer Install | |
run: composer install --ansi --prefer-dist --no-interaction --no-progress | |
- name: Run phpunit | |
run: ./vendor/bin/phpunit -c phpunit.xml.dist --coverage-clover build/clover.xml | |
# - name: Upload coverage results to Coveralls | |
# if: matrix.php == '7.3' | |
# env: | |
# COVERALLS_REPO_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
# run: | | |
# wget https://github.com/php-coveralls/php-coveralls/releases/download/v2.4.3/php-coveralls.phar | |
# chmod +x php-coveralls.phar | |
# php php-coveralls.phar --coverage_clover=build/clover.xml --json_path=build/coveralls-upload.json -vvv | |
samples: | |
name: Check samples | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
php: ['8.1'] | |
steps: | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php }} | |
extensions: gd, xml, zip | |
coverage: xdebug | |
- uses: actions/checkout@v2 | |
- name: Composer Install | |
run: composer install --ansi --prefer-dist --no-interaction --no-progress | |
- name: Generate samples files | |
run: composer run samples |