Merge pull request #232 from tolotrasamuel/master #155
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: Tests | |
| on: [push,pull_request] | |
| jobs: | |
| tests: | |
| timeout-minutes: 40 | |
| runs-on: macos-latest | |
| steps: | |
| # The branch or tag ref that triggered the workflow will be checked out. | |
| # https://github.com/actions/checkout | |
| - uses: actions/checkout@v3 | |
| # Setup a flutter environment. | |
| # https://github.com/marketplace/actions/flutter-action | |
| - uses: subosito/flutter-action@v2 | |
| with: | |
| channel: 'stable' | |
| - run: dart --version | |
| - run: flutter --version | |
| - run: flutter analyze | |
| - run: flutter test |