forked from zulip/zulip-flutter
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
wip add GitHub Actions workflow for CI
- Loading branch information
Showing
1 changed file
with
31 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
name: CI | ||
|
||
on: [push, pull_request] | ||
|
||
jobs: | ||
test: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- name: Clone Flutter SDK | ||
# We can't do a depth-1 clone, because we need the most recent tag | ||
# so that Flutter knows its version and sees the constraint in our | ||
# pubspec is satisfied. It's uncommon for flutter/flutter to go | ||
# more than 100 commits between tags. Fetch 1000 for good measure. | ||
run: | | ||
git clone --depth=1000 https://github.com/flutter/flutter ~/flutter | ||
TZ=UTC git --git-dir ~/flutter/.git log -1 --format='%h | %ci | %s' --date=iso8601-local | ||
echo ~/flutter/bin >> "$GITHUB_PATH" | ||
- name: Download Flutter SDK artifacts (flutter precache) | ||
run: flutter precache --universal | ||
|
||
- name: Print Flutter version | ||
run: flutter --version | ||
|
||
- name: Download our dependencies (flutter pub get) | ||
run: flutter pub get | ||
|
||
- name: Run tools/check | ||
run: TERM=dumb tools/check --all |