Showing
1 changed file
with
2 additions
and
2 deletions
1 | #The name of your workflow. | 1 | #The name of your workflow. |
2 | -name: Test, build and deploy | 2 | +name: build |
3 | # Trigger the workflow on push or pull request | 3 | # Trigger the workflow on push or pull request |
4 | on: [push,pull_request] | 4 | on: [push,pull_request] |
5 | #A workflow run is made up of one or more jobs. Jobs run in parallel by default. | 5 | #A workflow run is made up of one or more jobs. Jobs run in parallel by default. |
@@ -21,7 +21,7 @@ jobs: | @@ -21,7 +21,7 @@ jobs: | ||
21 | channel: 'stable' | 21 | channel: 'stable' |
22 | - run: flutter pub get | 22 | - run: flutter pub get |
23 | # run static analys code | 23 | # run static analys code |
24 | - - run: flutter analyze | 24 | + #- run: flutter analyze |
25 | # run flutter widgets tests and unit tests | 25 | # run flutter widgets tests and unit tests |
26 | - run: flutter test --coverage | 26 | - run: flutter test --coverage |
27 | # Upload coverage reports to Codecov | 27 | # Upload coverage reports to Codecov |
-
Please register or login to post a comment