chore(deps): update actions/checkout action to v6 #67
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: feedback_sentry | |
| on: | |
| push: | |
| branches: | |
| - master | |
| paths: | |
| - "feedback_sentry/**" | |
| - ".github/workflows/sentry.yml" | |
| pull_request: | |
| paths: | |
| - "feedback_sentry/**" | |
| - ".github/workflows/sentry.yml" | |
| jobs: | |
| check: | |
| defaults: | |
| run: | |
| working-directory: feedback_sentry | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-java@v4 | |
| with: | |
| java-version: '12.x' | |
| distribution: 'adopt' | |
| - uses: subosito/flutter-action@v2 | |
| with: | |
| channel: 'stable' | |
| - run: flutter pub get | |
| - run: dart format --set-exit-if-changed . | |
| - run: flutter analyze | |
| - run: flutter test |