-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
109 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,109 @@ | ||
name: sonarcloud | ||
on: | ||
workflow_dispatch: | ||
push: | ||
branches: [ "main" ] | ||
|
||
# Actions | ||
# shivammathur/setup-php@v2 https://github.com/marketplace/actions/setup-php-action | ||
# sonarsource/sonarcloud-github-action@master https://github.com/marketplace/actions/sonarcloud-scan | ||
|
||
jobs: | ||
|
||
tests-coverage: | ||
name: Create code coverage | ||
runs-on: "ubuntu-latest" | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
- name: Setup PHP | ||
uses: shivammathur/setup-php@v2 | ||
with: | ||
php-version: '8.3' | ||
coverage: xdebug | ||
tools: composer:v2 | ||
env: | ||
fail-fast: true | ||
- name: Get composer cache directory | ||
id: composer-cache | ||
run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT | ||
- name: Cache dependencies | ||
uses: actions/cache@v4 | ||
with: | ||
path: ${{ steps.composer-cache.outputs.dir }} | ||
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }} | ||
restore-keys: ${{ runner.os }}-composer- | ||
- name: Install project dependencies | ||
run: composer upgrade --no-interaction --no-progress --prefer-dist | ||
- name: Create code coverage | ||
run: vendor/bin/phpunit --testdox --coverage-xml=build/coverage --coverage-clover=build/coverage/clover.xml --log-junit=build/coverage/junit.xml | ||
- name: Store code coverage | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: code-coverage | ||
path: build/coverage | ||
|
||
sonarcloud-secrets: | ||
name: SonarCloud check secrets are present | ||
runs-on: ubuntu-latest | ||
outputs: | ||
github: ${{ steps.check-secrets.outputs.github }} | ||
sonar: ${{ steps.check-secrets.outputs.sonar }} | ||
steps: | ||
- name: Check secrets are present | ||
id: check-secrets | ||
run: | | ||
if [ -n "${{ secrets.GITHUB_TOKEN }}" ]; then | ||
echo "github=yes" >> $GITHUB_OUTPUT | ||
else | ||
echo "github=no" >> $GITHUB_OUTPUT | ||
echo "::warning ::GITHUB_TOKEN non set" | ||
fi | ||
if [ -n "${{ secrets.SONAR_TOKEN }}" ]; then | ||
echo "sonar=yes" >> $GITHUB_OUTPUT | ||
else | ||
echo "sonar=no" >> $GITHUB_OUTPUT | ||
echo "::warning ::SONAR_TOKEN non set" | ||
fi | ||
sonarcloud: | ||
name: SonarCloud Scan and Report | ||
needs: [ "tests-coverage", "sonarcloud-secrets" ] | ||
if: ${{ needs.sonarcloud-secrets.outputs.github == 'yes' && needs.sonarcloud-secrets.outputs.sonar == 'yes' }} | ||
runs-on: "ubuntu-latest" | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
- name: Unshallow clone to provide blame information | ||
run: git fetch --unshallow | ||
- name: Setup PHP | ||
uses: shivammathur/setup-php@v2 | ||
with: | ||
php-version: '8.3' | ||
coverage: none | ||
tools: composer:v2 | ||
- name: Get composer cache directory | ||
id: composer-cache | ||
run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT | ||
- name: Cache dependencies | ||
uses: actions/cache@v4 | ||
with: | ||
path: ${{ steps.composer-cache.outputs.dir }} | ||
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }} | ||
restore-keys: ${{ runner.os }}-composer- | ||
- name: Install project dependencies | ||
run: composer upgrade --no-interaction --no-progress --prefer-dist | ||
- name: Obtain code coverage | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: code-coverage | ||
path: build/coverage | ||
- name: Prepare SonarCloud Code Coverage Files | ||
run: | | ||
sed 's#'$GITHUB_WORKSPACE'#/github/workspace#g' build/coverage/junit.xml > build/sonar-junit.xml | ||
sed 's#'$GITHUB_WORKSPACE'#/github/workspace#g' build/coverage/clover.xml > build/sonar-coverage.xml | ||
- name: SonarCloud Scan | ||
uses: sonarsource/sonarcloud-github-action@master | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} |