Merge pull request #2 from supportpal/php-testing #13
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: CI | |
on: | |
push: | |
pull_request: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
php: [8.1, 8.2, 8.3] | |
stability: [prefer-stable] | |
name: PHP ${{ matrix.php }} - ${{ matrix.stability }} | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Setup php | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php }} | |
tools: pecl | |
extensions: xdebug | |
- name: Show php version | |
run: php -v && composer -V | |
- name: Debug if needed | |
run: if [[ "$DEBUG" == "true" ]]; then env; fi | |
env: | |
DEBUG: ${{secrets.DEBUG}} | |
- name: Install dependencies | |
run: composer install --prefer-source | |
- name: PHP code standard | |
run: php vendor/bin/phpcs --standard=phpcs.xml src/ tests/ | |
- name: PHP static analysis | |
run: php vendor/bin/phpstan analyse | |
- name: Run unit tests | |
run: ./vendor/bin/phpunit --coverage-clover build/logs/clover.xml | |
- name: Run coverage | |
run: ./vendor/bin/php-coveralls -v | |
env: | |
COVERALLS_RUN_LOCALLY: ${{ secrets.COVERALLS_RUN_LOCALLY }} | |
COVERALLS_REPO_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
continue-on-error: true | |
- name: Show coverage json | |
run: cat build/logs/coveralls-upload.json |