Remove join with address table in main query #542
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: Build citydb-tool | |
on: [ push, pull_request ] | |
jobs: | |
gradle: | |
strategy: | |
matrix: | |
os: [ ubuntu-latest, windows-latest ] | |
java: [ 21 ] | |
distribution: [ temurin ] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Java | |
uses: actions/setup-java@v3 | |
with: | |
distribution: ${{ matrix.distribution }} | |
java-version: ${{ matrix.java }} | |
- name: Grant execute permission to Gradle | |
run: chmod +x ./gradlew | |
- name: Execute Gradle build | |
uses: gradle/gradle-build-action@v2 | |
with: | |
arguments: build | |
cache-disabled: true |