Merge pull request #3 from Daviswww/develop #6
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: 'CI' | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
types: | |
- opened | |
- edited | |
- synchronize | |
jobs: | |
flutter_test: | |
name: Flutter Test | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Setup Flutter | |
uses: subosito/flutter-action@v2 | |
with: | |
flutter-version: '3.10.6' | |
- name: Set up tools | |
run: flutter pub get | |
- name: Flutter Test | |
run: flutter test | |
- name: Dart Test | |
run: dart fix --dry-run |