Update for Flutter 3.22 #277
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: Pull requests | |
on: | |
pull_request: | |
branches: [main] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: subosito/flutter-action@v1.5.3 | |
- uses: nanasess/setup-chromedriver@master | |
- run: flutter --version | |
- run: flutter pub get | |
- run: flutter test --coverage | |
- run: flutter test --platform chrome | |
- run: integration_test_app/run.sh | |
- run: flutter channel master | |
- run: flutter clean | |
- run: flutter test | |
- run: flutter test --platform chrome | |
- run: integration_test_app/run.sh | |
- uses: codecov/codecov-action@v1 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} |