Update kotlin monorepo to v1.9.25 #52
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
on: push | |
name: build and test app | |
jobs: | |
build: | |
name: install dependencies | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-java@v3 | |
with: | |
distribution: 'zulu' | |
java-version: "12.x" | |
- uses: subosito/flutter-action@v2 | |
with: | |
flutter-version: '3.7.7' | |
channel: 'stable' | |
- name: Get dependencies | |
run: flutter pub get | |
# Runs a set of commands using the runners shell | |
- name: Start release build | |
run: flutter build appbundle |