Add GH templates and codeowner #44
Workflow file for this run
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: | |
- master | |
pull_request: | |
# Publish using custom workflow | |
jobs: | |
build: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: dart-lang/setup-dart@v1 | |
- uses: subosito/flutter-action@v2 | |
with: | |
channel: 'stable' | |
- name: Install dependencies | |
working-directory: ./example | |
run: flutter pub get | |
- name: Build iOS | |
working-directory: ./example | |
run: flutter build ios --simulator --no-codesign | |
- name: Build Android | |
working-directory: ./example | |
run: flutter build apk |