cbc8eeddd8
Signed-off-by: xsahil03x <xdsahil@gmail.com>
103 lines
2.9 KiB
YAML
103 lines
2.9 KiB
YAML
name: pana
|
|
|
|
env:
|
|
ACTIONS_ALLOW_UNSECURE_COMMANDS: 'true'
|
|
|
|
on:
|
|
pull_request:
|
|
branches:
|
|
- master
|
|
paths-ignore:
|
|
- 'docs/**'
|
|
push:
|
|
branches:
|
|
- master
|
|
paths-ignore:
|
|
- 'docs/**'
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
stream_chat:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: axel-op/dart-package-analyzer@v3
|
|
id: analysis
|
|
with:
|
|
githubToken: ${{ secrets.GITHUB_TOKEN }}
|
|
relativePath: packages/stream_chat
|
|
- name: Check scores
|
|
env:
|
|
# NB: "analysis" is the id set above. Replace it with the one you used if different.
|
|
TOTAL: ${{ steps.analysis.outputs.total }}
|
|
TOTAL_MAX: ${{ steps.analysis.outputs.total_max }}
|
|
run: |
|
|
if (( $TOTAL < 120 ))
|
|
then
|
|
echo Score too low!
|
|
exit 1
|
|
fi
|
|
stream_chat_persistence:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: axel-op/dart-package-analyzer@v3
|
|
id: analysis
|
|
with:
|
|
githubToken: ${{ secrets.GITHUB_TOKEN }}
|
|
relativePath: packages/stream_chat_persistence
|
|
- name: Check scores
|
|
env:
|
|
# NB: "analysis" is the id set above. Replace it with the one you used if different.
|
|
TOTAL: ${{ steps.analysis.outputs.total }}
|
|
TOTAL_MAX: ${{ steps.analysis.outputs.total_max }}
|
|
run: |
|
|
PERCENTAGE=$(( $TOTAL * 100 / $TOTAL_MAX ))
|
|
if (( $TOTAL < 90 ))
|
|
then
|
|
echo Score too low!
|
|
exit 1
|
|
fi
|
|
stream_chat_flutter_core:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: axel-op/dart-package-analyzer@v3
|
|
id: analysis
|
|
with:
|
|
githubToken: ${{ secrets.GITHUB_TOKEN }}
|
|
relativePath: packages/stream_chat_flutter_core
|
|
- name: Check scores
|
|
env:
|
|
# NB: "analysis" is the id set above. Replace it with the one you used if different.
|
|
TOTAL: ${{ steps.analysis.outputs.total }}
|
|
TOTAL_MAX: ${{ steps.analysis.outputs.total_max }}
|
|
run: |
|
|
if (( $TOTAL < 120 ))
|
|
then
|
|
echo Score too low!
|
|
exit 1
|
|
fi
|
|
stream_chat_flutter:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: axel-op/dart-package-analyzer@v3
|
|
id: analysis
|
|
with:
|
|
githubToken: ${{ secrets.GITHUB_TOKEN }}
|
|
relativePath: packages/stream_chat_flutter
|
|
- name: Check scores
|
|
env:
|
|
# NB: "analysis" is the id set above. Replace it with the one you used if different.
|
|
TOTAL: ${{ steps.analysis.outputs.total }}
|
|
TOTAL_MAX: ${{ steps.analysis.outputs.total_max }}
|
|
run: |
|
|
if (( $TOTAL < 100 ))
|
|
then
|
|
echo Score too low!
|
|
exit 1
|
|
fi |