Chore/keys everywhere #13
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: Android Build (only test) | |
on: | |
push: | |
branches: | |
- master | |
- develop | |
pull_request: | |
branches: | |
- master | |
- develop | |
# for manual trigger | |
workflow_dispatch: | |
jobs: | |
build: | |
name: Create Android Build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Set up JDK | |
uses: actions/setup-java@v3 | |
with: | |
distribution: "zulu" | |
java-version: "12.x" | |
# for a faster build | |
cache: "gradle" | |
- name: Set up Flutter | |
uses: subosito/flutter-action@v2 | |
with: | |
channel: "stable" | |
# for a faster build | |
cache: true | |
- name: Show Flutter version | |
run: flutter --version | |
- name: Get dependencies | |
run: flutter pub get | |
- name: Run tests | |
run: flutter test |