Support PHP 8.2 #16
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: | |
build-test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
php_version: ["8.0", "8.1", "8.2"] | |
composer_flags: ["", "--prefer-lowest"] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php_version }} | |
extensions: xdebug | |
- name: Install dependencies | |
uses: php-actions/composer@v5 | |
with: | |
php_version: ${{ matrix.php_version }} | |
args: ${{ matrix.composer_flags }} | |
command: update | |
- name: Run tests | |
run: ./vendor/bin/phpunit --coverage-clover ./tests/logs/clover.xml | |
env: | |
XDEBUG_MODE: coverage | |
- name: Run Codesniffer | |
run: vendor/bin/phpcs --standard=PSR2 ./src | |
# - name: Submit coverage to Coveralls | |
# # We use php-coveralls library for this, as the official Coveralls GitHub Action lacks support for clover reports: | |
# # https://github.com/coverallsapp/github-action/issues/15 | |
# env: | |
# COVERALLS_REPO_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
# COVERALLS_PARALLEL: true | |
# COVERALLS_FLAG_NAME: ${{ github.job }}-PHP-${{ matrix.php_version }} ${{ matrix.composer_flags }} | |
# run: | | |
# composer global require php-coveralls/php-coveralls | |
# ~/.composer/vendor/bin/php-coveralls -v |