docs(context): add feature-sliced agent context notes (#40) #85
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: PR validation | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| # PR validation | |
| jobs: | |
| semantic_pull_request: | |
| uses: VeryGoodOpenSource/very_good_workflows/.github/workflows/semantic_pull_request.yml@v1 | |
| spell-check: | |
| uses: VeryGoodOpenSource/very_good_workflows/.github/workflows/spell_check.yml@v1 | |
| with: | |
| includes: "**/*.md" | |
| modified_files_only: false | |
| pr_validation: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: 📚 Git Checkout | |
| uses: actions/checkout@v4 | |
| - name: 🐦 Setup Flutter | |
| uses: subosito/flutter-action@v2 | |
| with: | |
| channel: stable | |
| cache: true | |
| cache-key: flutter-:os:-:channel:-:version:-:arch:-:hash:-${{ hashFiles('**/pubspec.lock') }} | |
| - name: 📦 Install Dependencies | |
| run: | | |
| flutter pub global activate very_good_cli | |
| very_good packages get --recursive | |
| - name: ✨ Check Formatting | |
| run: dart format --line-length 80 --set-exit-if-changed lib test | |
| - name: 🕵️ Analyze | |
| run: flutter analyze lib test |