Skip to content

ci: update workflow to use 'main' branch instead of 'master' #1

ci: update workflow to use 'main' branch instead of 'master'

ci: update workflow to use 'main' branch instead of 'master' #1

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