SIT-1627: Set the app name in the session query tag in JSON format #120
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: precommit test - udf with multiple JDK | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: '**' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
java: [ 11, 17 ] | |
fail-fast: false | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v2 | |
- name: Install Java | |
uses: actions/setup-java@v1 | |
with: | |
java-version: ${{ matrix.java }} | |
- name: Decrypt profile.properties | |
run: .github/scripts/decrypt_profile.sh | |
env: | |
PROFILE_PASSWORD: ${{ secrets.PROFILE_PASSWORD }} | |
- name: Run test | |
run: mvn -Dgpg.skip test -Dsuites="com.snowflake.snowpark_test.UDTFSuite,com.snowflake.snowpark_test.AlwaysCleanUDFSuite,com.snowflake.snowpark_test.StoredProcedureSuite" |