Skip to content

Update README.md

Update README.md #12

Workflow file for this run

name: Build
on:
push:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: subosito/flutter-action@v1.5.3
- run: flutter --version
- run: flutter pub get
- run: flutter test --coverage
- run: flutter test
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v4.0.1
with:
token: ${{ secrets.CODECOV_TOKEN }}
slug: michaelopes/simple_navigator