feature: Generate App Icon #50
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 | |
on: pull_request | |
jobs: | |
lint-unit-test: | |
name: Lint + Unit Tests | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- uses: ./.github/actions/set_up_flutter | |
- name: Lint | |
run: flutter analyze | |
- name: Unit tests | |
run: flutter test --exclude-tags app_store_screenshots | |
build-Android: | |
name: Build Android | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- uses: ./.github/actions/set_up_flutter | |
- name: Install JDK 17 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '17' | |
distribution: 'temurin' | |
- name: Build apk | |
run: flutter build apk --release | |
build-iOS: | |
name: Build iOS | |
runs-on: macOS-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- uses: ./.github/actions/set_up_flutter | |
- name: Build ipa | |
run: flutter build ios --release --no-codesign | |
build-web: | |
name: Build Web | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- uses: ./.github/actions/set_up_flutter | |
- name: Build web | |
run: flutter build web --release |