We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 975d964 commit 509f03cCopy full SHA for 509f03c
.github/workflows/quality.yaml
@@ -5,6 +5,9 @@ on:
5
push:
6
branches:
7
- main
8
+ schedule:
9
+ # Tous les lundis à 12h UTC
10
+ - cron: '0 12 * * 1'
11
jobs:
12
test-build:
13
name: build & test & analyze
@@ -36,4 +39,4 @@ jobs:
36
39
env:
37
40
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any
38
41
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
- run: mvn -B clean verify org.sonarsource.scanner.maven:sonar-maven-plugin:sonar -Pcoverage
42
+ run: mvn -B clean verify org.sonarsource.scanner.maven:sonar-maven-plugin:sonar -Pcoverage
0 commit comments