Update dependencies and SDK version to 2023.11.01 #17
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: Picture-in-picture CI | |
concurrency: | |
group: picture_in_picture:${{ github.head_ref }} | |
cancel-in-progress: true | |
on: | |
pull_request: | |
branches: [ "main" ] | |
paths: [ "picture_in_picture/**" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: set up JDK 17 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '17' | |
distribution: 'temurin' | |
cache: gradle | |
- name: Build with Gradle | |
run: | | |
cd picture_in_picture | |
chmod +x ./gradlew | |
./gradlew build |