2022-04-19 15:51:01 +02:00
|
|
|
name: Build
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- master
|
|
|
|
pull_request:
|
|
|
|
types: [opened, synchronize, reopened]
|
|
|
|
jobs:
|
|
|
|
build:
|
2022-04-19 16:04:20 +02:00
|
|
|
name: Code Quality Check
|
2022-04-19 15:51:01 +02:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
with:
|
|
|
|
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
|
|
|
|
- name: Set up JDK 11
|
|
|
|
uses: actions/setup-java@v1
|
|
|
|
with:
|
|
|
|
java-version: 11
|
2022-04-19 15:52:41 +02:00
|
|
|
- name: Make gradlew executable
|
|
|
|
run: chmod +x ./gradlew
|
2022-04-19 15:51:01 +02:00
|
|
|
- name: Generate SourceCode with Gradle
|
|
|
|
run: ./gradlew generateGithubSource
|
|
|
|
- name: Build and analyze
|
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any
|
|
|
|
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
|
|
|
|
run: ./gradlew build sonarqube --info
|