Skip to content

Support the web platform (only improve the list on pub.dev) #25

Support the web platform (only improve the list on pub.dev)

Support the web platform (only improve the list on pub.dev) #25

Workflow file for this run

name: Flutter_Tests
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
tests:
runs-on: ubuntu-latest
steps:
- name: Checkout the code
uses: actions/checkout@v4
- name: Install and set Flutter version
uses: subosito/flutter-action@v2
with:
channel: "stable"
- name: Restore packages
run: flutter pub get
- name: Analyze
run: flutter analyze
- name: Run tests
run: flutter test --coverage
- name: Upload coverage reports to Codecov
uses: codecov/[email protected]
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}