Upgrade to Flutter 3.10 and Dart 3 (#327) #151
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: Build | |
on: | |
push: | |
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: flutter test | |
working-directory: example/book_store | |
- run: flutter test | |
working-directory: example/mobile_app | |
- run: integration_test_app/run.sh | |
- run: flutter channel master | |
- run: flutter upgrade | |
- run: flutter test | |
- run: flutter test | |
working-directory: example/book_store | |
- run: flutter test | |
working-directory: example/mobile_app | |
- run: flutter test --platform chrome | |
- run: integration_test_app/run.sh | |
- uses: codecov/codecov-action@v1.0.2 | |
with: | |
token: ${{secrets.CODECOV_TOKEN}} | |
file: coverage/lcov.info |