Skip to content

feat: add support to dependency injection using get it and injectable #4

feat: add support to dependency injection using get it and injectable

feat: add support to dependency injection using get it and injectable #4

Workflow file for this run

name: Code Coverage Update
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v1
- name: Setup Flutter
uses: subosito/flutter-action@v1
with:
channel: "stable"
- name: Install dependencies
run: flutter pub get
working-directory: pokedex
- name: Run tests
run: flutter test --coverage --reporter github
working-directory: pokedex
- name: Upload coverage reports to Codecov
uses: codecov/[email protected]
with:
token: ${{ secrets.CODECOV_TOKEN }}