This repository has been archived by the owner on Dec 21, 2024. It is now read-only.
added initial login tests #1
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: Flutter CI | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
test: | |
name: Run Flutter tests and checks | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: subosito/flutter-action@v2 | |
with: | |
flutter-version: '3.x' | |
channel: 'stable' | |
- name: Install dependencies | |
run: flutter pub get | |
- name: Verify formatting | |
run: dart format --output=none --set-exit-if-changed . | |
- name: Analyze project source | |
run: flutter analyze | |
- name: Generate mocks | |
run: flutter pub run build_runner build --delete-conflicting-outputs | |
- name: Run unit tests | |
run: flutter test | |
build-android: | |
name: Build Android APK | |
needs: test | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-java@v2 | |
with: | |
distribution: 'zulu' | |
java-version: '11' | |
- uses: subosito/flutter-action@v2 | |
with: | |
flutter-version: '3.x' | |
channel: 'stable' | |
- run: flutter pub get | |
- run: flutter build apk | |
- uses: actions/upload-artifact@v2 | |
with: | |
name: release-apk | |
path: build/app/outputs/flutter-apk/app-release.apk | |
build-ios: | |
name: Build iOS IPA | |
needs: test | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: subosito/flutter-action@v2 | |
with: | |
flutter-version: '3.x' | |
channel: 'stable' | |
- run: flutter pub get | |
- run: flutter build ios --release --no-codesign | |
- uses: actions/upload-artifact@v2 | |
with: | |
name: release-ios | |
path: build/ios/iphoneos |