Skip to content

Merge pull request #1189 from mybatis/renovate/major-kotlin-monorepo #446

Merge pull request #1189 from mybatis/renovate/major-kotlin-monorepo

Merge pull request #1189 from mybatis/renovate/major-kotlin-monorepo #446

Workflow file for this run

name: SonarCloud
defaults:
run:
working-directory: core/mybatis-generator-core
on:
push:
branches:
- master
jobs:
build:
if: github.repository_owner == 'mybatis'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
# Disabling shallow clone is recommended for improving relevancy of reporting
fetch-depth: 0
- name: Set up JDK
uses: actions/setup-java@v4
with:
java-version: 21
distribution: zulu
- name: Analyze with SonarCloud
# Note: the mvnw executable is in the parent directory - not this working directory. We only do sonar on the
# core project, not all the test projects.
run: ../mvnw verify jacoco:report sonar:sonar -B -Dsonar.projectKey=mybatis_generator -Dsonar.organization=mybatis -Dsonar.host.url=https://sonarcloud.io -Dsonar.token=$SONAR_TOKEN -Dlicense.skip=true --no-transfer-progress
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}