Skip to content

build(deps-dev): bump symfony/var-dumper from 6.2.10 to 6.4.4 (#54) #261

build(deps-dev): bump symfony/var-dumper from 6.2.10 to 6.4.4 (#54)

build(deps-dev): bump symfony/var-dumper from 6.2.10 to 6.4.4 (#54) #261

name: Test and Quality Check
on:
push:
branches:
- main
- develop
pull_request:
types: [opened, synchronize, reopened]
jobs:
tests-and-quality-check:
name: Tests & Quality Check
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Setup PHP with Xdebug
uses: shivammathur/setup-php@v2
with:
php-version: '8.2'
coverage: 'xdebug'
- name: Install dependencies with composer
run: composer update --no-ansi --no-interaction --no-progress
- name: Run tests with phpunit/phpunit
run: vendor/bin/phpunit --coverage-clover=coverage.xml
- name: SonarQube Scan
uses: SonarSource/sonarqube-scan-action@master
env:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
SONAR_HOST_URL: ${{ secrets.SONAR_HOST_URL }}