Skip to content

test: Create flutter-test.yml #5

test: Create flutter-test.yml

test: Create flutter-test.yml #5

Workflow file for this run

name: Flutter Test
on:
push:
branches:
- develop
- main
pull_request:
branches:
- develop
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout the code
uses: actions/checkout@v2
- name: Install and set Flutter version
uses: subosito/flutter-action@v2
with:
flutter-version: 'stable'
- name: Analyze
run: flutter analyze
- name: Run tests
run: flutter test --coverage