We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d0c7e74 commit cdb634eCopy full SHA for cdb634e
.github/workflows/google_api_availability.yaml
@@ -54,3 +54,15 @@ jobs:
54
- name: Run iOS build
55
run: flutter build ios --release --no-codesign
56
working-directory: ${{env.example-directory}}
57
+
58
+ # Run all unit-tests with code coverage
59
+ - name: Run unit tests
60
+ run: flutter test --coverage
61
+ working-directory: ${{env.source-directory}}
62
63
+ # Upload code coverage information
64
+ - uses: codecov/codecov-action@v1
65
+ with:
66
+ file: ${{env.source-directory}}/coverage/lcov.info # optional
67
+ name: Google API Availability (App Facing Package) # optional
68
+ fail_ci_if_error: true
0 commit comments