Merge pull request #18 from felipecastrosales/develop #6
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: CI/CD | |
on: | |
push: | |
tags: | |
- v* | |
jobs: | |
flutter_test: | |
name: Run Flutter Analyze and Tests | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-java@v1 | |
with: | |
java-version: "12.x" | |
- uses: subosito/flutter-action@v2 | |
with: | |
channel: "stable" | |
- run: flutter pub get | |
- run: flutter analyze | |
- run: flutter test --coverage | |
- run: flutter test --machine > test-results.json | |
- uses: dorny/test-reporter@v1 | |
with: | |
name: test-results | |
path: test-results.json | |
reporter: flutter-json | |
- uses: VeryGoodOpenSource/very_good_coverage@v2 | |
with: | |
min_coverage: 0 | |
build_ios: | |
name: Build Flutter (iOS) | |
needs: [flutter_test] | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-java@v1 | |
with: | |
java-version: "12.x" | |
- uses: subosito/flutter-action@v2 | |
with: | |
channel: "stable" | |
- run: flutter pub get | |
- run: flutter clean | |
- run: flutter build ios --release --no-codesign | |
build_appbundle: | |
name: Build Flutter (Android) | |
needs: [flutter_test] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-java@v1 | |
with: | |
java-version: "12.x" | |
- uses: subosito/flutter-action@v2 | |
with: | |
channel: "stable" | |
- run: flutter pub get | |
- run: flutter clean | |
- run: flutter build appbundle | |
- name: Upload appbundle | |
uses: actions/upload-artifact@v3 | |
with: | |
name: appbundle | |
path: build/app/outputs/bundle/release/app-release.aab |