ios: First attempt at CI

This commit is contained in:
Vishesh Handa
2020-09-04 22:33:29 +02:00
parent 807dca4ac8
commit 23b9c17364

18
.github/workflows/ci.yml vendored Normal file
View File

@ -0,0 +1,18 @@
name: CI
on:
push:
branches:
- master
jobs:
build:
runs-on: macos-latest
steps:
- uses: actions/checkout@v1
- uses: subosito/flutter-action@v1
with:
flutter-version: "1.20.2"
- run: flutter pub get
- run: flutter test
- run: flutter build ios --release --no-codesign