Snow 802269 add log10, log1p, base64 and unbase64 functions #347
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 - windows udf | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: '**' | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v2 | |
- name: Install Java | |
uses: actions/setup-java@v1 | |
with: | |
java-version: 1.8 | |
- name: Decrypt profile.properties | |
shell: bash | |
env: | |
PROFILE_PASSWORD: ${{ secrets.PROFILE_PASSWORD }} | |
run: .github/scripts/decrypt_profile.sh | |
- name: Run test on windows | |
run: mvn --% -D"gpg.skip" -DscalaPluginVersion="4.5.4" -DtagsToInclude="com.snowflake.snowpark.UDFTest" -DtagsToExclude="UnstableTest" test |