We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5d1c635 commit 88503f1Copy full SHA for 88503f1
.github/workflows/main.yml
@@ -8,28 +8,6 @@ concurrency:
8
cancel-in-progress: true
9
10
jobs:
11
- score-package:
12
- name: "Score Package"
13
- runs-on: ubuntu-latest
14
- steps:
15
- - name: Checkout Repository
16
- uses: actions/checkout@v3
17
- - name: Run Dart Package Analyser
18
- uses: axel-op/dart-package-analyzer@master
19
- id: analysis
20
- with:
21
- githubToken: ${{ secrets.GITHUB_TOKEN }}
22
- - name: Check Package Scores
23
- env:
24
- TOTAL: ${{ steps.analysis.outputs.total }}
25
- TOTAL_MAX: ${{ steps.analysis.outputs.total_max }}
26
- run: |
27
- if (( $TOTAL < $TOTAL_MAX ))
28
- then
29
- echo Package score less than available score. Improve the score!
30
- exit 1
31
- fi
32
-
33
analyse-test:
34
name: "Analyse & Test"
35
runs-on: ubuntu-latest
0 commit comments