Skip to content

fix: lecture detail page translation #466

fix: lecture detail page translation

fix: lecture detail page translation #466

Workflow file for this run

name: Coverage
on: [push]
env:
FLUTTER_VERSION: "3"
jobs:
coverage:
name: Upload coverage to Codecov
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Flutter
uses: subosito/flutter-action@v2
with:
flutter-version: ${{ env.FLUTTER_VERSION }}
channel: "stable"
- 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@v2
with:
files: ./coverage/lcov.info
token: ${{ secrets.CODECOV_TOKEN }}
fail_ci_if_error: true