@@ -31,8 +31,7 @@ jobs:
|
|||||||
TOTAL: ${{ steps.analysis.outputs.total }}
|
TOTAL: ${{ steps.analysis.outputs.total }}
|
||||||
TOTAL_MAX: ${{ steps.analysis.outputs.total_max }}
|
TOTAL_MAX: ${{ steps.analysis.outputs.total_max }}
|
||||||
run: |
|
run: |
|
||||||
PERCENTAGE=$(( $TOTAL * 100 / $TOTAL_MAX ))
|
if (( $TOTAL < 120 ))
|
||||||
if (( $PERCENTAGE < 90 ))
|
|
||||||
then
|
then
|
||||||
echo Score too low!
|
echo Score too low!
|
||||||
exit 1
|
exit 1
|
||||||
@@ -53,7 +52,7 @@ jobs:
|
|||||||
TOTAL_MAX: ${{ steps.analysis.outputs.total_max }}
|
TOTAL_MAX: ${{ steps.analysis.outputs.total_max }}
|
||||||
run: |
|
run: |
|
||||||
PERCENTAGE=$(( $TOTAL * 100 / $TOTAL_MAX ))
|
PERCENTAGE=$(( $TOTAL * 100 / $TOTAL_MAX ))
|
||||||
if (( $PERCENTAGE < 90 ))
|
if (( $TOTAL < 90 ))
|
||||||
then
|
then
|
||||||
echo Score too low!
|
echo Score too low!
|
||||||
exit 1
|
exit 1
|
||||||
@@ -73,8 +72,7 @@ jobs:
|
|||||||
TOTAL: ${{ steps.analysis.outputs.total }}
|
TOTAL: ${{ steps.analysis.outputs.total }}
|
||||||
TOTAL_MAX: ${{ steps.analysis.outputs.total_max }}
|
TOTAL_MAX: ${{ steps.analysis.outputs.total_max }}
|
||||||
run: |
|
run: |
|
||||||
PERCENTAGE=$(( $TOTAL * 100 / $TOTAL_MAX ))
|
if (( $TOTAL < 120 ))
|
||||||
if (( $PERCENTAGE < 100 ))
|
|
||||||
then
|
then
|
||||||
echo Score too low!
|
echo Score too low!
|
||||||
exit 1
|
exit 1
|
||||||
@@ -94,8 +92,7 @@ jobs:
|
|||||||
TOTAL: ${{ steps.analysis.outputs.total }}
|
TOTAL: ${{ steps.analysis.outputs.total }}
|
||||||
TOTAL_MAX: ${{ steps.analysis.outputs.total_max }}
|
TOTAL_MAX: ${{ steps.analysis.outputs.total_max }}
|
||||||
run: |
|
run: |
|
||||||
PERCENTAGE=$(( $TOTAL * 100 / $TOTAL_MAX ))
|
if (( $TOTAL < 100 ))
|
||||||
if (( $PERCENTAGE < 80 ))
|
|
||||||
then
|
then
|
||||||
echo Score too low!
|
echo Score too low!
|
||||||
exit 1
|
exit 1
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
## Upcoming
|
## 2.1.2
|
||||||
|
|
||||||
🐞 Fixed
|
🐞 Fixed
|
||||||
|
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
name: stream_chat_flutter
|
name: stream_chat_flutter
|
||||||
homepage: https://github.com/GetStream/stream-chat-flutter
|
homepage: https://github.com/GetStream/stream-chat-flutter
|
||||||
description: Stream Chat official Flutter SDK. Build your own chat experience using Dart and Flutter.
|
description: Stream Chat official Flutter SDK. Build your own chat experience using Dart and Flutter.
|
||||||
version: 2.1.1
|
version: 2.1.2
|
||||||
repository: https://github.com/GetStream/stream-chat-flutter
|
repository: https://github.com/GetStream/stream-chat-flutter
|
||||||
issue_tracker: https://github.com/GetStream/stream-chat-flutter/issues
|
issue_tracker: https://github.com/GetStream/stream-chat-flutter/issues
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user