Skip to content

chore(deps): bump rexml from 3.3.8 to 3.3.9 in /android #851

chore(deps): bump rexml from 3.3.8 to 3.3.9 in /android

chore(deps): bump rexml from 3.3.8 to 3.3.9 in /android #851

Workflow file for this run

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