You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
604 B
29 lines
604 B
kind: pipeline
|
|
type: docker
|
|
name: Témoignages_Formulaire
|
|
|
|
|
|
trigger:
|
|
event:
|
|
- push
|
|
|
|
steps:
|
|
- name: setup_PHP_for_SonarQube
|
|
image: sonarsource/sonar-scanner-cli
|
|
environment:
|
|
SONAR_TOKEN:
|
|
from_secret: SONARQ_TOKEN
|
|
commands:
|
|
- sonar-scanner -Dsonar.projectKey=SAE4.01_FORMULAIRE
|
|
-Dsonar.sources=.
|
|
-Dsonar.login=$${SONAR_TOKEN}
|
|
-Dsonar.language=php
|
|
-Dsonar.host.url=https://codefirst.iut.uca.fr/sonar
|
|
-Dsonar.php.coverage.reportPaths=coverage.xml
|
|
|
|
|
|
|
|
|
|
|
|
|