SNOW-1480775 Collect Span Info from Copyable and Updatable Dataframes #250
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 | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: '**' | |
jobs: | |
build: | |
runs-on: ubuntu-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 | |
run: .github/scripts/decrypt_profile.sh | |
env: | |
PROFILE_PASSWORD: ${{ secrets.PROFILE_PASSWORD }} | |
- name: Run test | |
run: mvn -Dgpg.skip -DtagsToExclude=UnstableTest,com.snowflake.snowpark.PerfTest,com.snowflake.snowpark.JavaAPITest,com.snowflake.snowpark.UDFTest,com.snowflake.snowpark.UDFPackageTest,com.snowflake.snowpark.CodeVerification test |