Skip to content

Merge pull request #16 from makjac/makjac/remove-unnecessary-comments #9

Merge pull request #16 from makjac/makjac/remove-unnecessary-comments

Merge pull request #16 from makjac/makjac/remove-unnecessary-comments #9

Workflow file for this run

name: Flutter Windows Tests
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: windows-latest
name: Run unit tests on Windows
steps:
- uses: actions/checkout@v3
- uses: subosito/flutter-action@v2
with:
channel: 'stable'
- run: flutter --version
- name: Install dependencies
run: flutter pub get
- name: Analyze project source
run: dart analyze
- name: Run tests
run: flutter test