EA-5554: Update to deps and code to PHP8.2 #4
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: UnitTesting | |
on: [push] | |
jobs: | |
tests: | |
name: "Tests" | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
php-version: | |
- "8.2" | |
steps: | |
- name: "Install PHP" | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: "${{ matrix.php-version }}" | |
coverage: xdebug3 | |
- name: "Checkout" | |
uses: actions/checkout@v2 | |
- name: "Install dependencies" | |
run: composer install --prefer-dist --no-progress | |
- name: "Check Code Style" | |
run: composer phpcs-dry | |
env: | |
PHP_CS_FIXER_IGNORE_ENV: 1 | |
- name: "Run PHP Static Analysis Tool" | |
run: vendor/bin/phpstan | |
- name: "Run test suite" | |
run: vendor/bin/phpunit --coverage-clover=coverage.xml | |
- name: "Run mutation tests" | |
run: vendor/bin/infection --min-covered-msi=98 --min-msi=98 | |
# - name: "Send coverage to codecov.io" | |
# uses: codecov/codecov-action@v1 | |
# with: | |
# token: ${{ secrets.CODECOV_TOKEN }} |