Skip to content
This repository was archived by the owner on Oct 25, 2024. It is now read-only.

Commit e85bdeb

Browse files
committed
Workflow review
1 parent 7a104f4 commit e85bdeb

File tree

1 file changed

+32
-0
lines changed

1 file changed

+32
-0
lines changed
+32
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 }}

0 commit comments

Comments
 (0)