:feat: add hyper_storage_shared_preferences library and update import… #5
This file contains hidden or 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: Code Quality | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - '**/*.dart' | |
| pull_request: | |
| branches: | |
| - main | |
| paths: | |
| - '**/*.dart' | |
| jobs: | |
| test: | |
| name: Analyze | |
| runs-on: blacksmith-4vcpu-ubuntu-2404 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install Flutter | |
| uses: subosito/flutter-action@v2 | |
| with: | |
| channel: stable | |
| - name: Pub Get | |
| run: dart pub get | |
| - name: Check formatting | |
| run: dart format --set-exit-if-changed . | |
| - name: Lint | |
| run: dart analyze . --fatal-infos |