chore(deps): bump hooks_riverpod from 2.6.1 to 3.0.3 #40
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: Project CI | |
| on: | |
| pull_request: | |
| types: [opened, synchronize] | |
| paths: | |
| - "packages/**/lib/**" | |
| - "packages/**/test/**" | |
| - "pubspec.yaml" | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - "packages/**/lib/**" | |
| - "packages/**/test/**" | |
| - "pubspec.yaml" | |
| workflow_dispatch: | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| project-ci: | |
| name: CI | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Install Java | |
| uses: actions/setup-java@v4 | |
| with: | |
| distribution: "microsoft" | |
| java-version: "21" | |
| - name: Install Flutter | |
| uses: subosito/flutter-action@v2 | |
| with: | |
| flutter-version: "3.35.1" | |
| channel: "stable" | |
| cache: true | |
| - name: Install Flutter library | |
| run: flutter pub get | |
| - name: Set up the project and run the test | |
| run: dart run grinder test | |
| - name: Linter | |
| run: dart run grinder fix --dry-run | |
| - name: Analyze | |
| run: dart run grinder analyze |