-
-
Notifications
You must be signed in to change notification settings - Fork 508
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9302e11
commit 5d4049d
Showing
1 changed file
with
1 addition
and
16 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 |
---|---|---|
|
@@ -2,19 +2,9 @@ name: PUSH Workflow | |
on: [push] | ||
|
||
jobs: | ||
PR-Greeting: | ||
name: Greeting Message to user | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/first-interaction@v1 | ||
with: | ||
repo-token: ${{ secrets.GITHUB_TOKEN }} | ||
pr-message: "Congratulations on making your first PR! :confetti_ball: If you haven't already, check out our [Contributing Guidelines](https://github.com/PalisadoesFoundation/talawa/blob/master/CONTRIBUTING.md) and [PR Reporting Guidelines](https://github.com/PalisadoesFoundation/talawa/blob/master/PR-guidelines.md) to ensure that you are following our guidelines for contributing and creating PR." | ||
|
||
Flutter-Codebase-Check: | ||
name: Checking codebase | ||
runs-on: ubuntu-latest | ||
needs: PR-Greeting | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions/setup-java@v1 | ||
|
@@ -49,12 +39,7 @@ jobs: | |
- name: Running pub get to fetch dependencies | ||
run: flutter pub get | ||
- name: Codebase testing | ||
run: flutter test --coverage | ||
- name: Report code coverage | ||
uses: VeryGoodOpenSource/[email protected] | ||
with: | ||
path: "./coverage/lcov.info" | ||
min_coverage: 25 | ||
run: flutter test | ||
|
||
Android-Build: | ||
name: Testing build for android | ||
|