feat: implement history saving after copy or share click #13
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: Analyze Code | |
| on: | |
| push: | |
| branches: [main, dev/main] | |
| paths-ignore: | |
| - "*.md" | |
| - "CNAME" | |
| - ".vscode/**" | |
| - "*.iml" | |
| - ".gitignore" | |
| - "*/.gitignore" | |
| - ".github/ISSUE_TEMPLATE/**" | |
| - ".metadata" | |
| pull_request: | |
| branches: [main, dev/main] | |
| paths-ignore: | |
| - "*.md" | |
| - "CNAME" | |
| - ".vscode/**" | |
| - "*.iml" | |
| - ".gitignore" | |
| - "*/.gitignore" | |
| - ".github/ISSUE_TEMPLATE/**" | |
| - ".metadata" | |
| workflow_dispatch: | |
| jobs: | |
| analyze: | |
| name: Analyze Code | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v6 | |
| - name: Setup Flutter | |
| uses: subosito/flutter-action@v2 | |
| with: | |
| flutter-version: "3.38.5" | |
| channel: "stable" | |
| cache: true | |
| - name: Get dependencies | |
| run: flutter pub get | |
| - name: Analyze code | |
| run: flutter analyze |