chore: update webview_flutter 3.0.4 > 4.10.0 #869
Workflow file for this run
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: Coverage | |
on: [push] | |
env: | |
FLUTTER_VERSION: "3.24.x" | |
jobs: | |
coverage: | |
name: Upload coverage to Codecov | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Flutter | |
uses: subosito/flutter-action@v2 | |
with: | |
flutter-version: ${{ env.FLUTTER_VERSION }} | |
cache: true | |
- name: Install lcov | |
run: sudo apt-get install -y lcov | |
- name: Install dependencies | |
run: flutter pub get | |
- name: Test | |
run: ./test/run.sh | |
- name: Upload | |
uses: codecov/codecov-action@v4 | |
with: | |
files: ./coverage/lcov.info | |
token: ${{ secrets.CODECOV_TOKEN }} | |
fail_ci_if_error: true |