forked from 4seer/openflutterecommerceapp
-
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.
Merge branch 'master' into development
- Loading branch information
Showing
5 changed files
with
62 additions
and
4 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,30 @@ | ||
name: Dart CI | ||
|
||
on: | ||
push: | ||
branches: [ master ] | ||
pull_request: | ||
branches: [ master ] | ||
|
||
jobs: | ||
|
||
test: | ||
#The type of machine to run the job on. [windows,macos, ubuntu , self-hosted] | ||
runs-on: macos-latest | ||
#sequence of tasks called | ||
steps: | ||
# The branch or tag ref that triggered the workflow will be checked out. | ||
# https://github.com/actions/checkout | ||
- uses: actions/checkout@v1 | ||
# Setup a flutter environment. | ||
# https://github.com/marketplace/actions/flutter-action | ||
- uses: subosito/flutter-action@v1 | ||
with: | ||
flutter-version: '1.15.18' | ||
channel: 'dev' | ||
- run: flutter pub get | ||
- name: Static analysis | ||
run: flutter analyze | ||
# - name: Running tests | ||
# We can run SQLite tests only on real device | ||
# run: flutter run -t test/tests.dart |
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
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
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
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