[feat] Add support to use hbase online store #102
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: CaraML Store CI | |
on: [pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '17' | |
distribution: 'temurin' | |
- name: Linting | |
uses: gradle/gradle-build-action@v2 | |
with: | |
arguments: spotlessCheck | |
- name: Test | |
uses: gradle/gradle-build-action@v2 | |
with: | |
arguments: test |