Dispatch a notification when the sheet extent changes (#7) #23
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: Dry Publish | |
on: | |
push: | |
branches: [main] | |
env: | |
package_dir: ./package | |
jobs: | |
dry-publish: | |
name: Dry Publish | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: ${{ env.package_dir }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Install Flutter SDK | |
uses: subosito/flutter-action@v2 | |
with: | |
channel: stable | |
flutter-version: 3.x | |
- run: flutter --version | |
- run: flutter pub get | |
- uses: axel-op/dart-package-analyzer@master | |
id: analysis | |
with: | |
githubToken: ${{ secrets.GITHUB_TOKEN }} | |
relativePath: ${{ env.package_dir }} | |
- uses: fujidaiti/dart-package-inspector@v1 | |
with: | |
report: ${{ steps.analysis.outputs.json_output }} | |
min-convention-points: 30 | |
min-platform-points: 20 | |
min-analysis-points: 50 | |
min-dependency-points: 20 | |
supported-platforms: ios, android | |
- run: flutter pub publish --dry-run |