Merge pull request #4 from whatwedo/fix/use-static-instead-of-class #75
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: whatwedoMonitorBundle | |
on: | |
push: ~ | |
pull_request: ~ | |
jobs: | |
phpunit: | |
runs-on: ${{ matrix.operating-system }} | |
name: PHP ${{ matrix.php }} and Symfony ${{ matrix.symfony }} on ${{ matrix.operating-system }} | |
strategy: | |
matrix: | |
operating-system: [ ubuntu-latest ] | |
php: [ '8.1', '8.2' ] | |
symfony: [ '6.3.*', '6.4.*', '7.0.*' ] | |
exclude: | |
- php: '8.1' | |
symfony: '7.0.*' | |
steps: | |
- uses: actions/checkout@master | |
- name: Setup PHP ${{ matrix.php }} | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php }} | |
tools: flex | |
- name: Download dependencies | |
env: | |
SYMFONY_REQUIRE: ${{ matrix.symfony }} | |
uses: ramsey/composer-install@v1 | |
- name: Run test suite on PHP ${{ matrix.php }} and Symfony ${{ matrix.symfony }} | |
uses: php-actions/phpunit@v3 | |
env: | |
XDEBUG_MODE: coverage | |
ACTION_PHPUNIT_PATH: ./vendor/bin/simple-phpunit | |
with: | |
configuration: phpunit.xml.dist | |
php_extensions: xdebug | |
args: tests --coverage-clover ./coverage.xml | |
version: 9 | |
- name: Upload to Codecov | |
uses: codecov/codecov-action@v2 | |
with: | |
files: ./coverage.xml | |
verbose: true | |
qa: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@master | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: '8.2' | |
- name: Download dependencies | |
env: | |
SYMFONY_REQUIRE: ${{ matrix.symfony }} | |
uses: ramsey/composer-install@v1 | |
- name: Initialize simple-phpunit | |
run: vendor/bin/simple-phpunit --version | |
- name: Check Code Styles | |
run: vendor/bin/ecs | |
- name: Check PHPStan | |
run: vendor/bin/phpstan analyse src tests |