SNOW-1693064 Compile with Scala 2.13 #487
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 - Others | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: '**' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup JDK | |
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: sbt OtherTests:test |