Skip to content

Commit

Permalink
Testing coverage diff 1 (#18)
Browse files Browse the repository at this point in the history
* Revert "Revert "Testing main flow" (#14)"

This reverts commit e83645c.

* Testing workflow summary - 1

* Testing workflow summary - 2

* Testing workflow summary - 3

* Testing workflow summary - 4

* Test more events

* Add workflow_run

* Add workflow_run another

* Add second_workflow
  • Loading branch information
thsaravana authored Sep 19, 2024
1 parent 586ac2e commit 5bdfafd
Show file tree
Hide file tree
Showing 2 changed files with 68 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/first_workflow.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: FirstWorkflow

on:
push:
branches: [ main ]
pull_request:
schedule:
- cron: '*/5 * * * *' # Runs every 5 minutes
workflow_dispatch:

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up JDK 17
uses: actions/setup-java@v1
with:
java-version: 17

- name: Grant execute permission for gradlew
run: chmod +x gradlew
46 changes: 46 additions & 0 deletions .github/workflows/second_workflow.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
name: SecondWorkflow

on:
workflow_run:
workflows: ["FirstWorkflow"]
types:
- completed # This triggers only when the previous workflow completes successfully

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up JDK 17
uses: actions/setup-java@v1
with:
java-version: 17

- name: Grant execute permission for gradlew
run: chmod +x gradlew

- name: Run Module Coverage
run: ./gradlew prodNormalDebugCoverage debugCoverage

- name: Jacoco Report to PR
id: jacoco
uses: madrapps/jacoco-report@more-events
with:
paths: |
${{ github.workspace }}/**/build/reports/jacoco/**/**.xml,
${{ github.workspace }}/**/build/reports/jacoco/**/**.xml
token: ${{ secrets.GITHUB_TOKEN }}
min-coverage-overall: 45
min-coverage-changed-files: 84
title: '# :lobster: `Coverage Report`'
update-comment: true
comment-type: 'both'
pass-emoji: ':green_circle:'
fail-emoji: ':red_circle:'
continue-on-error: true
debug-mode: true

- name: Get the Coverage info
run: |
echo "Total coverage ${{ steps.jacoco.outputs.coverage-overall }}"
echo "Changed Files coverage ${{ steps.jacoco.outputs.coverage-changed-files }}"

0 comments on commit 5bdfafd

Please sign in to comment.