fix: horario bug - stateState duplicated during build (#56) #64
This file contains hidden or 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: Pruebas | |
| on: | |
| push: | |
| branches: [ "dev" ] | |
| pull_request: | |
| branches: [ "dev" ] | |
| jobs: | |
| probar: | |
| strategy: | |
| matrix: | |
| flutter_version: [ "latest", "3.41.4" ] | |
| runs-on: macos-latest | |
| steps: | |
| - name: Clonar Repositorio | |
| uses: actions/checkout@v4 | |
| - name: Configurar Flutter SDK (${{ matrix.flutter_version }}) | |
| uses: flutter-actions/setup-flutter@v4 | |
| with: | |
| cache: true | |
| channel: stable | |
| version: ${{ matrix.flutter_version }} | |
| - name: Instalar librerías | |
| run: flutter pub get | |
| - name: Ejecutar pruebas unitarias | |
| run: flutter test --coverage --test-randomize-ordering-seed=random |