Add border on card #8
This file contains 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: Global workflow | |
on: | |
push: | |
pull_request: | |
jobs: | |
analyze: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: subosito/flutter-action@v2 | |
with: | |
channel: 'stable' | |
- run: flutter pub get | |
- run: dart analyze . | |
- run: dart format --set-exit-if-changed . | |
- run: flutter pub run dart_code_linter:metrics analyze lib | |
- run: flutter pub run dart_code_linter:metrics check-unnecessary-nullable lib | |
- run: flutter pub run dart_code_linter:metrics check-unused-files lib | |
- run: flutter pub run dart_code_linter:metrics check-unused-l10n lib | |
- run: flutter pub run dart_code_linter:metrics check-unused-code lib |