-
-
Notifications
You must be signed in to change notification settings - Fork 234
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into fix-ios-worker
- Loading branch information
Showing
5 changed files
with
107 additions
and
3 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,98 @@ | ||
name: Build Flutter Beta | ||
|
||
on: | ||
push: | ||
branches: | ||
- flutter-beta | ||
pull_request: | ||
branches: | ||
- flutter-beta | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
quality: | ||
name: Quality Checks | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
- uses: subosito/flutter-action@v1 | ||
with: | ||
channel: beta | ||
- name: Get Packages | ||
run: flutter pub get | ||
- name: Analyze | ||
run: flutter analyze | ||
- name: Format | ||
run: dart format . --set-exit-if-changed | ||
- name: Publishability | ||
run: flutter pub publish --dry-run | ||
- name: Test | ||
run: flutter test --coverage | ||
- name: Archieve Golden Failures | ||
if: failure() | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: Golden failures | ||
retention-days: 2 | ||
path: | | ||
**/test/**/failures/**/*.* | ||
- name: Upload coverage to Codecov | ||
uses: codecov/codecov-action@v1 | ||
with: | ||
token: ${{ secrets.CODECOV_TOKEN }} | ||
- uses: VeryGoodOpenSource/[email protected] | ||
|
||
android: | ||
name: Android Integration Tests | ||
needs: quality | ||
runs-on: macos-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: subosito/flutter-action@v1 | ||
with: | ||
channel: beta | ||
- uses: actions/setup-java@v2 | ||
with: | ||
distribution: 'temurin' | ||
java-version: '11' | ||
- name: Run Android Integration Tests | ||
uses: reactivecircus/android-emulator-runner@v2 | ||
with: | ||
api-level: 29 | ||
working-directory: example | ||
script: flutter test integration_test/android_test.dart -d emulator-5554 | ||
|
||
# iOS Test based on https://medium.com/flutter-community/run-flutter-driver-tests-on-github-actions-13c639c7e4ab | ||
# by @kate_sheremet | ||
ios: | ||
name: iOS Integration Tests | ||
needs: quality | ||
strategy: | ||
matrix: | ||
device: | ||
- "iPhone 14" | ||
fail-fast: false | ||
runs-on: macos-13 | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: maxim-lobanov/setup-xcode@v1 | ||
with: | ||
xcode-version: latest | ||
- name: Download iOS 17 | ||
run: xcodebuild -downloadPlatform ios | ||
- uses: subosito/flutter-action@v1 | ||
with: | ||
channel: beta | ||
- uses: futureware-tech/simulator-action@v1 | ||
id: simulator | ||
with: | ||
model: ${{ matrix.device }} | ||
- name: "Run iOS integration tests" | ||
run: flutter test integration_test/ios_test.dart -d ${{steps.simulator.outputs.udid}} | ||
working-directory: example |
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
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
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
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