Added GitHub action for testing #6
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: Test | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
permissions: | |
contents: read | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
services: | |
singlestore: | |
# check for new versions at https://github.com/singlestore-labs/singlestoredb-dev-image/pkgs/container/singlestoredb-dev/versions | |
image: ghcr.io/singlestore-labs/singlestoredb-dev:0.2.35 | |
ports: | |
- "3306:3306" | |
env: | |
# if you want a free SingleStore license for your own use please visit https://www.singlestore.com/cloud-trial/ | |
SINGLESTORE_LICENSE: ${{ secrets.SINGLESTORE_LICENSE }} | |
ROOT_PASSWORD: ${{ secrets.ROOT_PASSWORD }} | |
env: | |
ROOT_PASSWORD: ${{ secrets.ROOT_PASSWORD }} | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up JDK 11 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '11' | |
distribution: 'temurin' | |
- name: Copy common.proto file | |
uses: wei/wget@v1 | |
with: | |
args: -O src/main/proto/common.proto https://raw.githubusercontent.com/fivetran/fivetran_sdk/production/common.proto | |
- name: Copy destination_sdk.proto file | |
uses: wei/wget@v1 | |
with: | |
args: -O src/main/proto/connector_sdk.proto https://raw.githubusercontent.com/fivetran/fivetran_sdk/production/connector_sdk.proto | |
- name: Build with Gradle | |
uses: gradle/gradle-build-action@bd5760595778326ba7f1441bcf7e88b49de61a25 # v2.6.0 | |
with: | |
arguments: build |