This repository has been archived by the owner on May 24, 2024. It is now read-only.
add closing notes and bump minor version #59
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: cicd | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
semantic_pull_request: | |
# A reusable workflow for ensuring commits are semantic | |
uses: VeryGoodOpenSource/very_good_workflows/.github/workflows/semantic_pull_request.yml@v1 | |
# TODO(immadisairaj): Remove this line once initial commits are done | |
if: github.event_name != 'push' | |
package_scores: | |
# A reusable workflow for verifying package scores on pub.dev | |
uses: VeryGoodOpenSource/very_good_workflows/.github/workflows/pana.yml@v1 | |
with: | |
min_score: 130 # always have max score | |
flutter_package: | |
# A reusable workflow for Flutter packages | |
uses: VeryGoodOpenSource/very_good_workflows/.github/workflows/flutter_package.yml@v1 | |
with: | |
min_coverage: 100 # always have max coverage |