Skip to content

Commit cdf14a5

Browse files
committed
chore: GitHub workdlow : maven build and sonar scan
1 parent da165b2 commit cdf14a5

File tree

2 files changed

+34
-1
lines changed

2 files changed

+34
-1
lines changed
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
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 }}

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,5 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
99

1010
### Added
1111

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

0 commit comments

Comments
 (0)