-
-
Notifications
You must be signed in to change notification settings - Fork 63
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4 from Frezyx/dev
Release version 0.2.0
- Loading branch information
Showing
57 changed files
with
623 additions
and
267 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,44 @@ | ||
name: talker | ||
|
||
on: | ||
push: | ||
paths: | ||
- "talker/**" | ||
- ".github/workflows/talker.yaml" | ||
|
||
pull_request: | ||
paths: | ||
- "talker/**" | ||
- ".github/workflows/talker.yaml" | ||
|
||
jobs: | ||
build: | ||
defaults: | ||
run: | ||
working-directory: talker | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: dart-lang/setup-dart@v1 | ||
|
||
- name: Install Dependencies | ||
run: dart pub get | ||
|
||
- name: Format | ||
run: dart format --set-exit-if-changed . | ||
|
||
- name: Analyze | ||
run: dart analyze --fatal-infos --fatal-warnings . | ||
|
||
- name: Run Tests | ||
run: | | ||
pub global activate test_coverage | ||
export PATH=$PATH:$HOME/.pub-cache/bin | ||
test_coverage | ||
- name: Check Code Coverage | ||
uses: VeryGoodOpenSource/very_good_coverage@v1.2.0 | ||
with: | ||
min_coverage: 30 | ||
path: talker/coverage/lcov.info |
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,44 @@ | ||
name: talker_error_handler | ||
|
||
on: | ||
push: | ||
paths: | ||
- "talker_error_handler/**" | ||
- ".github/workflows/talker_error_handler.yaml" | ||
|
||
pull_request: | ||
paths: | ||
- "talker_error_handler/**" | ||
- ".github/workflows/talker_error_handler.yaml" | ||
|
||
jobs: | ||
build: | ||
defaults: | ||
run: | ||
working-directory: talker_error_handler | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: dart-lang/setup-dart@v1 | ||
|
||
- name: Install Dependencies | ||
run: dart pub get | ||
|
||
- name: Format | ||
run: dart format --set-exit-if-changed . | ||
|
||
- name: Analyze | ||
run: dart analyze --fatal-infos --fatal-warnings . | ||
|
||
- name: Run Tests | ||
run: | | ||
pub global activate test_coverage | ||
export PATH=$PATH:$HOME/.pub-cache/bin | ||
test_coverage | ||
- name: Check Code Coverage | ||
uses: VeryGoodOpenSource/very_good_coverage@v1.2.0 | ||
with: | ||
min_coverage: 30 | ||
path: talker_error_handler/coverage/lcov.info |
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,49 @@ | ||
name: talker_flutter | ||
|
||
on: | ||
push: | ||
paths: | ||
- "talker_flutter/**" | ||
- ".github/workflows/talker_flutter.yaml" | ||
|
||
pull_request: | ||
paths: | ||
- "talker_flutter/**" | ||
- ".github/workflows/talker_flutter.yaml" | ||
|
||
jobs: | ||
build: | ||
defaults: | ||
run: | ||
working-directory: talker_flutter | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions/setup-java@v1 | ||
with: | ||
java-version: "12.x" | ||
- uses: subosito/flutter-action@v1 | ||
with: | ||
channel: "stable" | ||
|
||
- name: Install Dependencies | ||
run: flutter pub get | ||
|
||
- name: Format | ||
run: flutter format --set-exit-if-changed . | ||
|
||
- name: Analyze | ||
run: flutter analyze --fatal-infos --fatal-warnings . | ||
|
||
- name: Run Tests | ||
run: | | ||
pub global activate test_coverage | ||
export PATH=$PATH:$HOME/.pub-cache/bin | ||
test_coverage | ||
- name: Check Code Coverage | ||
uses: VeryGoodOpenSource/very_good_coverage@v1.2.0 | ||
with: | ||
min_coverage: 30 | ||
path: talker_flutter/coverage/lcov.info |
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,44 @@ | ||
name: talker_logger | ||
|
||
on: | ||
push: | ||
paths: | ||
- "talker_logger/**" | ||
- ".github/workflows/talker_logger.yaml" | ||
|
||
pull_request: | ||
paths: | ||
- "talker_logger/**" | ||
- ".github/workflows/talker_logger.yaml" | ||
|
||
jobs: | ||
build: | ||
defaults: | ||
run: | ||
working-directory: talker_logger | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: dart-lang/setup-dart@v1 | ||
|
||
- name: Install Dependencies | ||
run: dart pub get | ||
|
||
- name: Format | ||
run: dart format --set-exit-if-changed . | ||
|
||
- name: Analyze | ||
run: dart analyze --fatal-infos --fatal-warnings . | ||
|
||
- name: Run Tests | ||
run: | | ||
pub global activate test_coverage | ||
export PATH=$PATH:$HOME/.pub-cache/bin | ||
test_coverage | ||
- name: Check Code Coverage | ||
uses: VeryGoodOpenSource/very_good_coverage@v1.2.0 | ||
with: | ||
min_coverage: 30 | ||
path: talker_logger/coverage/lcov.info |
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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# Talker | ||
Advanced error catching and logging for dart/flutter applications | ||
|
||
### 0.1.0 | ||
### 0.2.0 | ||
Working in progress |
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 |
---|---|---|
@@ -1,3 +1,7 @@ | ||
## 1.0.0 | ||
## 0.2.0 | ||
- Simplified package api | ||
- Fix Talker lazy configuration | ||
|
||
## 0.1.0 | ||
|
||
- Initial version. |
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
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
Oops, something went wrong.