From 23b9c173647686251dd7ca6095088111d37e1bea Mon Sep 17 00:00:00 2001 From: Vishesh Handa Date: Fri, 4 Sep 2020 22:33:29 +0200 Subject: [PATCH] ios: First attempt at CI --- .github/workflows/ci.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 00000000..f3522c02 --- /dev/null +++ b/.github/workflows/ci.yml @@ -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