-
Notifications
You must be signed in to change notification settings - Fork 86
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: CI for dart analyze and flutter test
Added CI to run dart analyze and flutter test on push and pull-requests
- Loading branch information
Showing
1 changed file
with
36 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,36 @@ | ||
# This workflow uses actions that are not certified by GitHub. | ||
# They are provided by a third-party and are governed by | ||
# separate terms of service, privacy policy, and support | ||
# documentation. | ||
|
||
name: Dart | ||
|
||
on: | ||
push: | ||
branches: [ master ] | ||
pull_request: | ||
branches: [ master ] | ||
|
||
jobs: | ||
build: | ||
runs-on: macos-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions/setup-java@v1 | ||
with: | ||
java-version: '12.x' | ||
- name: Install Flutter | ||
uses: subosito/flutter-action@v1 | ||
with: | ||
flutter-version: '2.0.3' | ||
- name: Install dependencies | ||
run: flutter pub get | ||
- name: Run dart analyze | ||
run: dart analyze | ||
- name: run tests | ||
run: flutter test | ||
- name: build example project | ||
working-directory: ./example | ||
run: flutter build ios --release --no-codesign | ||
- name: publish --dry-run | ||
run: flutter pub publish --dry-run |