chore(deps): bump geolocator from 9.0.2 to 10.1.0 #74
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: Deploy Master | |
on: | |
pull_request: | |
branches: | |
- master | |
jobs: | |
generate: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v4 | |
- name: Set up Flutter | |
uses: subosito/flutter-action@v2 | |
with: | |
flutter-version: 3.10.0 | |
- name: Install Dependencies | |
run: flutter pub get | |
- name: Generate | |
run: flutter pub run build_runner build --delete-conflicting-outputs | |
test: | |
needs: generate | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v4 | |
- name: Set up Flutter | |
uses: subosito/flutter-action@v2 | |
with: | |
flutter-version: 3.10.0 | |
- name: Install Dependencies | |
run: flutter pub get | |
- name: Generate | |
run: flutter pub run build_runner build --delete-conflicting-outputs | |
- name: Run Tests | |
run: flutter test | |
analyze: | |
needs: test | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v4 | |
- name: Set up Flutter | |
uses: subosito/flutter-action@v2 | |
with: | |
flutter-version: 3.10.0 | |
- name: Install Dependencies | |
run: flutter pub get | |
- name: Generate | |
run: flutter pub run build_runner build --delete-conflicting-outputs | |
- name: Format | |
run: dart fix --dry-run --apply | |
- name: Analyze | |
run: flutter analyze | |