Skip to content

Added macOS support #27

Added macOS support

Added macOS support #27

Workflow file for this run

name: build
on:
push:
branches: [master]
pull_request:
branches: [master]
workflow_dispatch:
jobs:
test:
name: Run flutter analyze and flutter test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: subosito/flutter-action@v1
with:
flutter-version: "3.10.5"
channel: "stable"
- run: flutter pub get
- run: flutter analyze
- run: flutter test
build_windows:
name: Build flutter app for windows
needs: [test]
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- uses: subosito/flutter-action@v1
with:
flutter-version: "3.10.5"
channel: "stable"
- run: flutter config --enable-windows-desktop
- run: flutter build windows