Add changelog entry for version 1.1.1 #20
Workflow file for this run
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 | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| paths: | |
| - 'flutter/**' | |
| jobs: | |
| flutter-build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Set up Flutter | |
| uses: ./.github/actions/setup-flutter | |
| - name: Install dependencies - Jujuba SVG | |
| working-directory: flutter/jujuba_svg | |
| run: flutter pub get | |
| shell: bash | |
| - name: Run tests - Jujuba SVG | |
| working-directory: flutter/jujuba_svg | |
| run: flutter test | |
| - name: Install dependencies - Sample project | |
| working-directory: flutter/sample | |
| run: flutter pub get | |
| shell: bash | |
| - name: Analyze | |
| working-directory: flutter | |
| run: dart analyze |