Skip to content

Commit

Permalink
Release of 2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
LucJosin authored Aug 17, 2021
2 parents 997403c + 78619b0 commit d3d528d
Show file tree
Hide file tree
Showing 76 changed files with 3,549 additions and 1,434 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/dart-analyzer.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Dart Analyzer
on: [push, pull_request]

jobs:
package-analysis:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: axel-op/dart-package-analyzer@v3
id: dart_analysis
with:
githubToken: ${{ secrets.GITHUB_TOKEN }}
- name: Check Scores
env:
TOTAL: ${{ steps.dart_analysis.outputs.total }}
TOTAL_MAX: ${{ steps.dart_analysis.outputs.total_max }}
run: |
# [dart-package-analyzer@v3] don't support [dartdoc comments] so, we
# add more 10 points.
if (( ($TOTAL + 10) < ($TOTAL_MAX + 10) ))
then
echo Total Score: [$TOTAL].
echo Something's wrong!.
exit 1
else
echo Everything's ok.
fi
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# on_audio_query
/others

# Miscellaneous
*.class
*.lock
Expand Down
Loading

0 comments on commit d3d528d

Please sign in to comment.