Files
CloudflareDNS-java/.github/workflows/build-and-analyse.yml
T
thischwa 9f301337b6
Build and Analyse / build-and-analyse (push) Successful in 10m11s
Remove SonarCloud integration from project and related configuration files.
2026-06-25 19:18:21 +02:00

36 lines
749 B
YAML

name: Build and Analyse
on:
push:
branches:
- develop
- feature*
pull_request:
types: [ opened, synchronize, reopened ]
defaults:
run:
shell: bash
jobs:
build-and-analyse:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
with:
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
- name: Setup Java and Maven
uses: ./.github/actions/setup-java-maven
- name: Build and test
run: mvn -B verify
- name: Publish Test Report
uses: ./.github/actions/publish-report/
if: ${{ always() }}
with:
token: ${{ secrets.GITHUB_TOKEN }}
report-name: Summary of JUnit Tests