Skip to content

#60: Suggest tag values #134

#60: Suggest tag values

#60: Suggest tag values #134

# 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