Bump share_plus from 7.0.0 to 7.2.2 #126
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: Analyze and Test | |
on: | |
pull_request: | |
branches: | |
- master | |
push: | |
branches: | |
- master | |
jobs: | |
flutter_analyze: | |
name: Analyze flutter project | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-java@v4 | |
with: | |
distribution: 'zulu' | |
java-version: "12.x" | |
- uses: subosito/flutter-action@v2 | |
with: | |
flutter-version: '3.7.7' | |
channel: stable | |
- run: flutter pub get | |
- run: flutter analyze | |
flutter_test: | |
name: Run flutter test and analyze | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-java@v4 | |
with: | |
distribution: 'zulu' | |
java-version: "12.x" | |
- uses: subosito/flutter-action@v2 | |
with: | |
flutter-version: '3.7.7' | |
channel: stable | |
- run: flutter test |