[WIP] github workflow

This commit is contained in:
Neevash Ramdial
2021-01-08 16:18:08 -04:00
parent 5f256f2786
commit a2b5a408d5
7 changed files with 137 additions and 117 deletions
@@ -0,0 +1,13 @@
#!/usr/bin/env bash
BRANCH=$1
if [ "$BRANCH" == "dev" ]
then
# TODO Flutter dev branch is currently broken so we're unable to test MacOS.
echo "TODO: Skipping macOS testing due to Flutter dev branch issue. Switching branch to stable."
BRANCH=stable
fi
git clone https://github.com/flutter/flutter.git --depth 1 -b $BRANCH _flutter
echo "::add-path::$GITHUB_WORKSPACE/_flutter/bin"