-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[TransactionalMessenger] Added SonarCloud checks, refactor GitHub act…
…ions
- Loading branch information
1 parent
b793534
commit 27164b5
Showing
5 changed files
with
134 additions
and
94 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,112 @@ | ||
name: Build | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
- develop | ||
- 'releases/**' | ||
paths-ignore: | ||
- '**/*.md' | ||
- '**/*.gitignore' | ||
- '**/*.gitattributes' | ||
|
||
pull_request: | ||
types: | ||
- published | ||
- created | ||
- edited | ||
- opened | ||
- synchronize | ||
- reopened | ||
paths-ignore: | ||
- '**/*.md' | ||
- '**/*.gitignore' | ||
- '**/*.gitattributes' | ||
|
||
jobs: | ||
build: | ||
name: PHP | ||
runs-on: ubuntu-latest | ||
|
||
strategy: | ||
matrix: | ||
php: | ||
- "8.1" | ||
- "8.2" | ||
include: | ||
- php-versions: ["8.1", "8.2"] | ||
- composer-options: "--ignore-platform-reqs" | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: Setup PHP | ||
uses: shivammathur/setup-php@v2 | ||
with: | ||
php-version: "${{ matrix.php }}" | ||
extensions: mbstring, intl | ||
coverage: xdebug | ||
tools: pecl, phpunit, composer | ||
ini-values: post_max_size=256M | ||
|
||
- name: Setup composer | ||
uses: ramsey/composer-install@v1 | ||
with: | ||
composer-options: "${{ matrix.composer-options }}" | ||
|
||
- name: Validate composer files | ||
run: composer validate | ||
|
||
- name: Cache composer packages | ||
id: composer-cache | ||
uses: actions/cache@v3 | ||
with: | ||
path: vendor | ||
key: ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }} | ||
restore-keys: | | ||
${{ runner.os }}-php- | ||
- name: Install dependencies | ||
if: steps.composer-cache.outputs.cache-hit != 'true' | ||
run: composer update --prefer-dist --no-progress | ||
|
||
- name: Setup tests directories | ||
run: mkdir -p build/logs | ||
|
||
- name: Execute unit tests | ||
run: ./vendor/bin/phpunit --colors=always --configuration phpunit.xml.dist --coverage-cobertura tests-cobertura.xml --coverage-clover tests-coverage.xml --log-junit tests-execution.xml | ||
|
||
- name: Prepare coverages and logs | ||
run: cp tests-coverage.xml build/logs/clover.xml && cp tests-cobertura.xml build/logs/cobertura.xml && cp tests-execution.xml build/logs/junit.xml | ||
|
||
- name: Push to Coveralls | ||
env: | ||
COVERALLS_REPO_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
COVERALLS_PARALLEL: true | ||
COVERALLS_FLAG_NAME: php-${{ matrix.php-versions }} | ||
run: | | ||
composer global require php-coveralls/php-coveralls | ||
php-coveralls -v | ||
- name: SonarCloud scan | ||
uses: SonarSource/sonarcloud-github-action@master | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} | ||
with: | ||
projectBaseDir: ${{ github.workspace }} | ||
|
||
finish: | ||
needs: [ build ] | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Coveralls Finished | ||
uses: coverallsapp/github-action@master | ||
with: | ||
github-token: ${{ secrets.GITHUB_TOKEN }} | ||
parallel-finished: true |
This file was deleted.
Oops, something went wrong.
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
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
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,10 @@ | ||
sonar.projectKey=fractalzombie_frzb-transactional-messenger | ||
sonar.organization=fractalzombie | ||
sonar.projectName=frzb-transactional-messenger | ||
sonar.sources=Attribute,Enum,Event,EventListener,Exception,Helper,MessageBus,Storage,ValueObject | ||
sonar.sourceEncoding=UTF-8 | ||
sonar.tests=Tests | ||
sonar.exclusions=Resources/**,.docker/**,.github/**,vendor/** | ||
sonar.php.coverage.reportPaths=tests-coverage.xml | ||
sonar.php.tests.reportPath=tests-execution.xml | ||
verbose=true |