Skip to content
This repository was archived by the owner on Feb 14, 2025. It is now read-only.

Bump to 4.0.0-beta.5 and 3.8.3 #80

Bump to 4.0.0-beta.5 and 3.8.3

Bump to 4.0.0-beta.5 and 3.8.3 #80

Workflow file for this run

name: pr
on:
pull_request
# Cancel any current or previous job from the same PR
concurrency:
group: ${{ github.head_ref }}
cancel-in-progress: true
jobs:
build-app:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: set up JDK 11
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: 11
- name: Build current tutorial
working-directory: ./compose/final
run: |
./gradlew assembleDebug
- name: Build legacy tutorial
working-directory: ./views/final
run: |
./gradlew assembleDebug
- name: Build v4 tutorial
working-directory: ./v4/final
run: |
./gradlew assembleDebug