Bump symfony/http-client from 5.2.2 to 5.4.47 #29
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: Statsapp tests | |
on: | |
push: | |
pull_request: | |
jobs: | |
phpunit: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
php-versions: ['7.3', '7.4'] | |
name: PHPUnit PHP ${{ matrix.php-versions }} | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup PHP, with composer and extensions | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php-versions }} | |
extensions: mbstring, xml, ctype, iconv, intl, pdo_sqlite, mysql, pdo_mysql | |
coverage: pcov | |
- name: Set SYMFONY_ENV to test | |
run: echo "SYMFONY_ENV=test" >> $GITHUB_ENV | |
- name: Install dependencies | |
run: | | |
cp app/config/parameters.yml.dist app/config/parameters.yml | |
composer install --no-progress | |
- name: Run tests | |
run: vendor/bin/phpunit |