-
Notifications
You must be signed in to change notification settings - Fork 0
42 lines (37 loc) · 1.44 KB
/
maven on master.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# This workflow will build a Java project with Maven, and cache/restore any dependencies to improve the workflow execution time
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-java-with-maven
name: Java CI with Maven + Dependabot
env:
SONAR_TOKEN: ${{ secrets.SONAR_CLOUD_TOKEN }}
on:
push:
branches: [ "master" ]
jobs:
build:
services:
postgres:
image: postgres:13.14-bullseye
env:
POSTGRES_PASSWORD: password
POSTGRES_DB: labelle_gen
# Set health checks to wait until postgres has started
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
ports:
- 5432:5432
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up JDK 21
uses: actions/setup-java@v3
with:
java-version: '21'
distribution: 'temurin'
cache: maven
- name: Build with Maven, analyze
run: xvfb-run mvn -Pcoverage -B package --file pom.xml sonar:sonar -Dsonar.projectKey=kamil-sita_labelle -Dsonar.organization=kamil-sita -Dsonar.host.url=https://sonarcloud.io -Dsonar.maven.scanAll=true -Dsonar.coverage.jacoco.xmlReportPaths=../report-aggregate/target/site/jacoco-aggregate/jacoco.xml
- name: Update dependency graph
uses: advanced-security/maven-dependency-submission-action@v3