chore: add more test cases #4
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: CI/Lint | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| lint: | |
| name: Lint Check | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: 📚 Checkout code | |
| uses: actions/checkout@v3 | |
| - name: 🐦 Set up Flutter | |
| uses: flutter-actions/setup-flutter@v3.6 | |
| with: | |
| channel: stable | |
| version: latest | |
| - name: 📦 Install dependencies | |
| run: flutter pub get | |
| - name: 🔍 Dart Analyze | |
| uses: ValentinVignal/action-dart-analyze@v0.17 | |
| with: | |
| fail-on: format |