updated documentation #138
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: Dart | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
tests: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3.1.0 | |
- uses: subosito/flutter-action@v2.7.1 | |
with: | |
flutter-version: '3.13.6' | |
- name: Install meedu dependencies | |
run: cd packages/meedu && flutter pub get | |
- name: Run meedu tests | |
run: cd packages/meedu && flutter test --coverage | |
- name: Install flutter_meedu dependencies | |
run: cd packages/flutter_meedu && flutter pub get | |
- name: Run flutter_meedu tests | |
run: cd packages/flutter_meedu && flutter test --coverage | |
- name: Run hooks_meedu tests | |
run: cd packages/hooks_meedu && flutter test --coverage | |
- name: Upload coverage to Codecov | |
run: curl -s https://codecov.io/bash | bash |