Skip to content

3.4.1-rc.05

3.4.1-rc.05 #3

Workflow file for this run

name: Flutter Test on Release
on:
release:
types: [ created ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Flutter
uses: subosito/flutter-action@v2
with:
channel: stable
- name: Get dependencies
run: flutter pub get
- name: Run tests
run: flutter test -j 1 --coverage
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v4.0.1
with:
token: ${{ secrets.CODECOV_TOKEN }}
file: coverage/lcov.info