Skip to content

Merge pull request #57 from ujamii/dependabot/github_actions/codecov/… #158

Merge pull request #57 from ujamii/dependabot/github_actions/codecov/…

Merge pull request #57 from ujamii/dependabot/github_actions/codecov/… #158

Workflow file for this run

name: PHP code quality
on:
push:
pull_request:
jobs:
static:
name: Static code analysis
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
php: [ '8.2', '8.3' ]
steps:
- uses: actions/checkout@v4
- name: Setup PHP
uses: shivammathur/[email protected]
with:
php-version: ${{ matrix.php }}
tools: composer
- name: Validate composer.json and composer.lock
run: composer validate
- name: Cache Composer dependencies
uses: actions/[email protected]
with:
path: /tmp/composer-cache
key: ${{ runner.os }}-${{ hashFiles('**/composer.lock') }}
- name: composer install
run: composer install --no-interaction --no-progress
- name: Run PHPStan
run: composer run phpstan
test:
name: Tests on PHP ${{ matrix.php }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
php: ['8.2', '8.3']
steps:
- uses: actions/checkout@v4
- name: Setup PHP
uses: shivammathur/[email protected]
with:
php-version: ${{ matrix.php }}
tools: composer
coverage: xdebug
- name: Validate composer.json and composer.lock
run: composer validate
- name: Cache Composer dependencies
uses: actions/[email protected]
with:
path: /tmp/composer-cache
key: ${{ runner.os }}-${{ hashFiles('**/composer.lock') }}
- name: composer install
run: composer install --no-interaction --no-progress
- name: Run test suite
run: composer run phpunit
- uses: codecov/[email protected]
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: ./build/coverage/clover.xml
- name: Run PHPInfection
run: composer run infection
# env:
# STRYKER_DASHBOARD_API_KEY: ${{ secrets.STRYKER_DASHBOARD_API_KEY }}