UnexpectedErrorAPI
renamed to -> UnexpectedErrorBase
, bloc presen…
#10
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: ci | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: subosito/flutter-action@v2.8.0 | |
- name: Install Dependencies | |
run: flutter pub get | |
- name: Format | |
run: dart format --line-length 120 . | |
- name: Flutter Analyze | |
run: dart analyze . | |
- name: Install DCM | |
uses: CQLabs/setup-dcm@v1 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Run DCM | |
uses: CQLabs/dcm-action@v1 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
ci_key: ${{ secrets.DCM_KEY }} | |
email: ${{ secrets.DCM_EMAIL }} | |
folders: . | |
fatal_style: true | |
fatal_performance: true | |
fatal_warnings: true | |
- name: Dry Publish | |
run: dart pub publish --dry-run |