[workflows] disable the test to building apk #476
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: Test | |
on: | |
- push | |
env: | |
flutter_version: '3.24.3' | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install JDK 17 | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: '17' | |
- name: Install Flutter | |
uses: subosito/flutter-action@v2 | |
with: | |
flutter-version: ${{ env.flutter_version }} | |
channel: stable | |
cache: true | |
- name: Setup Flutter | |
run: | | |
flutter config --no-cli-animations | |
- name: Flutter test | |
run: | | |
flutter test | |
# - name: Build APK | |
# run: | | |
# flutter build apk --target-platform android-arm64 |