Bump org.jetbrains.kotlin.plugin.spring from 1.9.21 to 1.9.22 #119
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: Java CI with Gradle | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
repository_dispatch: | |
types: contracts changed | |
jobs: | |
build: | |
strategy: | |
matrix: | |
os: [ubuntu-latest, windows-latest, macos-latest] | |
java: [17] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
with: { fetch-depth: 0 } | |
- name: Set up JDK ${{ matrix.java }} | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'oracle' | |
java-version: ${{ matrix.java }} | |
- name: Checkout Specmatic Kafka Repo | |
uses: actions/checkout@v4 | |
with: | |
repository: znsio/specmatic-kafka | |
path: specmatic-kafka | |
token: ${{ secrets.ACTIONS_GITHUB_TOKEN }} | |
- name: Grant execute permission for gradlew | |
working-directory: specmatic-kafka | |
run: chmod +x gradlew | |
- name: Publish Specmatic Kafka to Local Maven Repo | |
working-directory: specmatic-kafka | |
run: ./gradlew publishToMavenLocal | |
- name: Grant execute permission for gradlew on BFF repo | |
run: chmod +x gradlew | |
- name: Build BFF project with Gradle | |
run: ./gradlew build | |
- name: Run coverage report | |
run: ./gradlew jacocoTestReport | |
- name: Generate JaCoCo Badge | |
id: jacoco | |
uses: cicirello/jacoco-badge-generator@v2 | |
with: | |
generate-branches-badge: true | |
jacoco-csv-file: build/reports/jacoco/test/jacocoTestReport.csv | |
if: matrix.os == 'ubuntu-latest' | |
- name: Log coverage percentage | |
run: | | |
echo "coverage = ${{ steps.jacoco.outputs.coverage }}" | |
echo "branch coverage = ${{ steps.jacoco.outputs.branches }}" | |