Hacktoberfest 2023 #69
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: Pull Request build test | |
on: | |
pull_request: | |
branches: [ main ] | |
jobs: | |
flutter_test: | |
name: Run flutter test and analyze | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
# - uses: actions/setup-java@v1 | |
# with: | |
# java-version: "12.x" | |
- uses: subosito/flutter-action@v2.4.0 | |
with: | |
channel: "stable" | |
- run: flutter --version | |
- run: flutter pub get | |
- run: flutter pub upgrade | |
- run: flutter build apk --no-tree-shake-icons --debug |