Skip to content

Enhance HTTP Request Methods in Request.php #557

Enhance HTTP Request Methods in Request.php

Enhance HTTP Request Methods in Request.php #557

Workflow file for this run

name: Sonar Cloud
on:
push:
branches:
- main
pull_request:
types: [opened, synchronize, reopened]
jobs:
sonarcloud:
name: SonarCloud
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.sha }}
- name: Cache Composer dependencies
uses: actions/cache@v4
with:
path: /tmp/composer-cache
key: ${{ runner.os }}-${{ hashFiles('**/composer.lock') }}
- name: Install dependencies
uses: php-actions/composer@v6
- name: PHPUnit Tests
uses: php-actions/phpunit@v3
with:
version: 11
php_version: 8.3
php_extensions: xdebug shmop
coverage_clover: coverage.xml
bootstrap: vendor/autoload.php
log_junit: execution.xml
configuration: tests/phpunit.xml
test_suffix: Test.php
args: --coverage-filter src tests
env:
XDEBUG_MODE: coverage
- name: Fix code coverage paths
run: |
sed -i 's@'$GITHUB_WORKSPACE'@/github/workspace/@g' coverage.xml
sed -i 's@'$GITHUB_WORKSPACE'@/github/workspace/@g' execution.xml
- name: SonarCloud Scan
uses: SonarSource/sonarcloud-github-action@master
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}