[spring][hibernate] add native SQL queries #20
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
# This workflow will build a Java project with Gradle | |
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-gradle | |
name: test-hello-gradle | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
shell: bash | |
working-directory: apps/HelloGradle/app | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: joschi/setup-jdk@v2 | |
with: | |
java-version: '15' # The OpenJDK version to make available on the path | |
architecture: 'x64' # defaults to 'x64' | |
- name: Grant execute permission for gradlew | |
run: chmod +x gradlew | |
- name: Test | |
run: ./gradlew test |