Correção de bug na formatação de CPF + Criação de novo parâmetro #200
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: publish | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: subosito/[email protected] | |
- run: flutter pub get | |
- name: format | |
run: dart format --output=none --set-exit-if-changed . | |
- name: analyze | |
run: flutter analyze | |
- name: test | |
run: flutter test --coverage | |
- name: codecov | |
uses: codecov/[email protected] | |
- uses: bluefireteam/flutter-gh-pages@v7 | |
with: | |
workingDir: example | |
baseHref: /brasil_fields/ |