File tree Expand file tree Collapse file tree 2 files changed +34
-1
lines changed Expand file tree Collapse file tree 2 files changed +34
-1
lines changed Original file line number Diff line number Diff line change
1
+ # CI with maven build and scan
2
+ #
3
+ # version 1.1.0
4
+ #
5
+ # see : https://universe.fugerit.org/src/docs/conventions/workflows/build_maven_package.html
6
+
7
+ name : CI maven build and scan
8
+
9
+ on :
10
+ # Trigger analysis when pushing in master or pull requests, and when creating
11
+ # a pull request.
12
+ push :
13
+ branches :
14
+ - main
15
+ - develop
16
+ - branch-preview
17
+ pull_request :
18
+ types :
19
+ - opened
20
+ - synchronize
21
+ - reopened
22
+
23
+ jobs :
24
+ build :
25
+ name : Build
26
+ runs-on : ubuntu-latest
27
+ steps :
28
+ - uses : fugerit-org/psychic-actions/maven-build-scan@stable
29
+ with :
30
+ github-token : ${{ secrets.GITHUB_TOKEN }}
31
+ sonar-token : ${{ secrets.SONAR_TOKEN }}
32
+ disable-maven-dependency-submission : ${{ vars.DISABLE_MAVEN_DEPENDENCY_SUBMISSION }}
Original file line number Diff line number Diff line change @@ -9,4 +9,5 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
9
9
10
10
### Added
11
11
12
- - [ TestExampleJavaUtilLogging] ( turbo-unit-core/src/test/java/org/fugerit/java/turbo/unit/core/jul/TestExampleJavaUtilLogging.java )
12
+ - [ TestExampleJavaUtilLogging] ( turbo-unit-core/src/test/java/org/fugerit/java/turbo/unit/core/jul/TestExampleJavaUtilLogging.java )
13
+ - GitHub workdlow : maven build and sonar scan
You can’t perform that action at this time.
0 commit comments