Support for Gorm Entities with same name, but different packages #69
Workflow file for this run
This file contains hidden or 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
# Licensed to the Apache Software Foundation (ASF) under one or more | |
# contributor license agreements. See the NOTICE file distributed with | |
# this work for additional information regarding copyright ownership. | |
# The ASF licenses this file to You under the Apache License, Version 2.0 | |
# (the "License"); you may not use this file except in compliance with | |
# the License. You may obtain a copy of the License at | |
# | |
# https://www.apache.org/licenses/LICENSE-2.0 | |
# | |
# Unless required by applicable law or agreed to in writing, software | |
# distributed under the License is distributed on an "AS IS" BASIS, | |
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | |
# See the License for the specific language governing permissions and | |
# limitations under the License. | |
name: "Code Style" | |
on: | |
push: | |
branches: | |
- '[0-9]+.[0-9]+.x' | |
pull_request: | |
workflow_dispatch: | |
# queue jobs and only allow 1 run per branch due to the likelihood of hitting GitHub resource limits | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: false | |
jobs: | |
check_core_projects: | |
name: "Core Projects" | |
runs-on: ubuntu-24.04 | |
steps: | |
- name: "π Output Agent IP" # in the event RAO blocks this agent, this can be used to debug it | |
run: curl -s https://api.ipify.org | |
- name: "π₯ Checkout repository" | |
uses: actions/checkout@v4 | |
- name: "βοΈ Setup JDK" | |
uses: actions/setup-java@v4 | |
with: | |
distribution: liberica | |
java-version: 17 | |
- name: "π Setup Gradle" | |
uses: gradle/actions/setup-gradle@v4 | |
with: | |
develocity-access-key: ${{ secrets.GRAILS_DEVELOCITY_ACCESS_KEY }} | |
- name: "π Check Core Projects" | |
run: ./gradlew codeStyle | |
- name: "π€ Upload Failure Reports" | |
if: failure() | |
uses: actions/upload-artifact@v4 | |
with: | |
name: core-reports | |
path: | | |
**/build/reports/checkstyle/ | |
**/build/reports/codenarc/ | |
check_gradle_plugin_projects: | |
name: "Gradle Plugin Projects" | |
runs-on: ubuntu-24.04 | |
steps: | |
- name: "π Output Agent IP" # in the event RAO blocks this agent, this can be used to debug it | |
run: curl -s https://api.ipify.org | |
- name: "π₯ Checkout repository" | |
uses: actions/checkout@v4 | |
- name: "βοΈ Setup JDK" | |
uses: actions/setup-java@v4 | |
with: | |
distribution: liberica | |
java-version: 17 | |
- name: "π Setup Gradle" | |
uses: gradle/actions/setup-gradle@v4 | |
with: | |
develocity-access-key: ${{ secrets.GRAILS_DEVELOCITY_ACCESS_KEY }} | |
- name: "π Check Gradle Plugin Projects" | |
working-directory: grails-gradle | |
run: ./gradlew codeStyle | |
- name: "π€ Upload Failure Reports" | |
if: failure() | |
uses: actions/upload-artifact@v4 | |
with: | |
name: gradle-plugin-reports | |
path: | | |
grails-gradle/**/build/reports/checkstyle/ | |
grails-gradle/**/build/reports/codenarc/ | |
check_grails_forge_projects: | |
name: "Forge Projects" | |
runs-on: ubuntu-24.04 | |
steps: | |
- name: "π Output Agent IP" # in the event RAO blocks this agent, this can be used to debug it | |
run: curl -s https://api.ipify.org | |
- name: "π₯ Checkout repository" | |
uses: actions/checkout@v4 | |
- name: "βοΈ Setup JDK" | |
uses: actions/setup-java@v4 | |
with: | |
distribution: liberica | |
java-version: 17 | |
- name: "π Setup Gradle" | |
uses: gradle/actions/setup-gradle@v4 | |
with: | |
develocity-access-key: ${{ secrets.GRAILS_DEVELOCITY_ACCESS_KEY }} | |
- name: "π Check Forge Projects" | |
working-directory: grails-forge | |
run: ./gradlew codeStyle | |
- name: "π€ Upload Failure Reports" | |
if: failure() | |
uses: actions/upload-artifact@v4 | |
with: | |
name: forge-reports | |
path: | | |
grails-forge/**/build/reports/checkstyle/ | |
grails-forge/**/build/reports/checkstyleNohttp/ | |
grails-forge/**/build/reports/codenarc/ |