build(deps): bump io.freefair.lombok from 8.7.1 to 8.11 #155
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Gradle Build | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
workflow_dispatch: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: false | |
jobs: | |
build: | |
name: Build and CodeQL Analysis | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup JDK | |
uses: actions/setup-java@v4 | |
with: | |
java-version: '17' | |
distribution: 'temurin' | |
cache: 'gradle' | |
- name: Initialize CodeQL | |
uses: github/codeql-action/init@v2 | |
with: | |
languages: java | |
- name: Grant permissions | |
run: chmod +x gradlew | |
- name: Build | |
run: ./gradlew assemble -x test | |
- name: Perform CodeQL Analysis | |
uses: github/codeql-action/analyze@v2 | |
unit-tests: | |
name: Unit Tests | |
needs: build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup JDK | |
uses: actions/setup-java@v4 | |
with: | |
java-version: '17' | |
distribution: 'temurin' | |
cache: 'gradle' | |
- name: Run Unit Tests | |
run: ./gradlew test | |
- name: Upload Unit Test Results | |
if: always() | |
uses: actions/upload-artifact@v3 | |
with: | |
name: unit_test_results | |
path: | | |
build/test-results/test/*.xml | |
- name: Upload Coverage Reports | |
if: always() | |
uses: actions/upload-artifact@v3 | |
with: | |
name: coverage_reports_unit | |
path: | | |
build/reports/jacoco/test/jacocoTestReport.xml | |
integration-tests: | |
name: Integration Tests | |
needs: build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup JDK | |
uses: actions/setup-java@v4 | |
with: | |
java-version: '17' | |
distribution: 'temurin' | |
cache: 'gradle' | |
- name: Run Integration Tests | |
run: ./gradlew -x test quarkusIntTest | |
- name: Upload Integration Test Results | |
if: always() | |
uses: actions/upload-artifact@v3 | |
with: | |
name: integration_test_results | |
path: | | |
build/test-results/quarkusIntTest/*.xml | |
- name: Upload Coverage Reports | |
if: always() | |
uses: actions/upload-artifact@v3 | |
with: | |
name: coverage_reports_integration | |
path: | | |
build/reports/jacoco/test/jacocoTestReport.xml | |
event_file: | |
name: "Event File" | |
needs: [unit-tests, integration-tests] | |
runs-on: ubuntu-latest | |
steps: | |
- name: Upload | |
uses: actions/upload-artifact@v3 | |
with: | |
name: event_file | |
path: ${{ github.event_path }} |