add argument to onMoved #28
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: run-flutter-test | |
on: [push] | |
jobs: | |
flutter-test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Setup Flutter | |
uses: subosito/flutter-action@v2 | |
- name: Install depencencies | |
run: flutter pub get | |
- name: Run tests and generate coverage | |
run: flutter test --no-pub --coverage | |
- name: Install lcov | |
run: sudo apt-get -y install lcov | |
- name: Convert lcov.info to HTML | |
run: genhtml coverage/lcov.info -o coverage/html | |
- name: Upload coverage directory | |
uses: actions/upload-artifact@v4 | |
with: | |
path: coverage |