Skip to content

issue #19 - provide a way to set TimeStamp attribute #16

issue #19 - provide a way to set TimeStamp attribute

issue #19 - provide a way to set TimeStamp attribute #16

Workflow file for this run

name: SonarCloud
on:
push:
branches:
- develop
- feature/*
- feat/*
pull_request:
types: [ opened, synchronize, reopened ]
jobs:
sonarcloud:
name: SonarCloud
runs-on: ubuntu-latest
permissions:
pull-requests: write
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Setup PHP with Xdebug
uses: shivammathur/setup-php@v2
with:
php-version: 7.4
coverage: xdebug
- name: Install dependencies with composer
run: composer update --no-ansi --no-interaction --no-progress
- name: Generate coverage report with phpunit/phpunit
run: vendor/bin/phpunit --coverage-clover coverage.xml --log-junit report.xml
- name: Monitor coverage
uses: slavcodev/coverage-monitor-action@v1
with:
github_token: ${{ secrets.SECRET_GITHUB_TOKEN }}
coverage_path: coverage.xml
threshold_alert: 75
threshold_warning: 95
- name: Codecov analyze
uses: codecov/codecov-action@v3
with:
files: coverage.xml
- name: Fix phpunit files paths
run: sed -i 's@'$GITHUB_WORKSPACE/'@''@g' coverage.xml report.xml
- name: SonarCloud Scan
uses: SonarSource/sonarcloud-github-action@master
env:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}