Test the CI process of the application build #19
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: Flutter CI | |
on: | |
push: | |
branches: | |
- main | |
- 2023 | |
pull_request: | |
branches: | |
- main | |
- 2023 | |
jobs: | |
build: | |
name: Build and Test | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v4 | |
- name: Set up Flutter | |
uses: subosito/flutter-action@v2 | |
with: | |
flutter-version: 3.24.3 | |
- name: Set up Java 17 | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'temurin' | |
java-version: '17' | |
- name: Install dependencies | |
run: flutter pub get | |
- name: Run tests | |
run: flutter test | |
- name: Build APK for Android | |
run: flutter build apk | |
- name: Build iOS App | |
run: flutter build ios | |
env: | |
CI: true | |
- name: Archive and upload Android artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: build-android | |
path: build/app/outputs/flutter-apk/app-release.apk | |
- name: Archive and upload iOS artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: build-ios | |
path: build/ios/Runner.app |