Skip to content

Commit e38b0cf

Browse files
ci run
1 parent a8d3c69 commit e38b0cf

File tree

3 files changed

+5
-8
lines changed

3 files changed

+5
-8
lines changed

.github/workflows/coverage.yml

-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@ name: Java CI with Code Coverage
22

33
on:
44
push:
5-
branches:
6-
- feat/CS-36689-compare-merge-branch
75

86
jobs:
97
build-and-test:

.github/workflows/jacoco.yml

+1-3
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@ name: Java CI with JaCoCo
22

33
on:
44
push:
5-
branches:
6-
- feat/CS-36689-compare-merge-branch
75

86
jobs:
97
build-and-test:
@@ -31,7 +29,7 @@ jobs:
3129
total_missed=${total_missed:-0}
3230
total_percentage=$(awk "BEGIN { pc=100*${total_lines}/(${total_lines}+${total_missed}) } { printf \"%f\", pc }")
3331
echo "Total Coverage Percentage: $total_percentage"
34-
if (( $(bc <<< "$total_percentage < 60.0") )); then
32+
if (( $(bc <<< "$total_percentage < 70.0") )); then
3533
echo "Code Coverage is below 80% - failing the CI build."
3634
exit 1
3735
else

.github/workflows/maven-publish.yml

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
name: Publish package to the Maven Central Repository
2+
23
on:
3-
push:
4-
branches:
5-
- feat/CS-36689-compare-merge-branch
4+
release:
5+
types:
6+
- created
67
jobs:
78
publish-maven:
89
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)