-
-
Notifications
You must be signed in to change notification settings - Fork 76
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 #175 from Frezyx/dev
Release v4.0.0
- Loading branch information
Showing
147 changed files
with
3,355 additions
and
1,808 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
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,64 @@ | ||
name: talker_bloc_logger | ||
|
||
on: | ||
push: | ||
paths: | ||
- "packages/talker_bloc_logger/**" | ||
- ".github/workflows/talker_bloc_logger.yaml" | ||
|
||
pull_request: | ||
paths: | ||
- "packages/talker_bloc_logger/**" | ||
- ".github/workflows/talker_bloc_logger.yaml" | ||
|
||
jobs: | ||
build: | ||
defaults: | ||
run: | ||
working-directory: packages/talker_bloc_logger | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions/setup-java@v3 | ||
with: | ||
java-version: "12.x" | ||
distribution: 'zulu' | ||
- uses: subosito/flutter-action@v2 | ||
with: | ||
channel: "stable" | ||
|
||
- name: Install Dependencies | ||
run: flutter pub get | ||
|
||
- name: Format | ||
run: dart format --set-exit-if-changed . | ||
|
||
- name: Analyze | ||
run: flutter analyze --fatal-infos --fatal-warnings . | ||
|
||
- name: Run tests | ||
run: flutter test --no-pub --coverage | ||
|
||
- name: Check Code Coverage | ||
uses: VeryGoodOpenSource/very_good_coverage@v2.2.0 | ||
with: | ||
path: packages/talker_bloc_logger/coverage/lcov.info | ||
min_coverage: 90 | ||
|
||
- name: Upload coverage to Codecov | ||
uses: codecov/codecov-action@v3 | ||
with: | ||
token: ${{ secrets.CODECOV_TOKEN }} | ||
|
||
# - 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@v2.2.0 | ||
# with: | ||
# min_coverage: 30 | ||
# path: talker_bloc_logger_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 |
---|---|---|
@@ -0,0 +1,64 @@ | ||
name: talker_dio_logger | ||
|
||
on: | ||
push: | ||
paths: | ||
- "packages/talker_dio_logger/**" | ||
- ".github/workflows/talker_dio_logger.yaml" | ||
|
||
pull_request: | ||
paths: | ||
- "packages/talker_dio_logger/**" | ||
- ".github/workflows/talker_dio_logger.yaml" | ||
|
||
jobs: | ||
build: | ||
defaults: | ||
run: | ||
working-directory: packages/talker_dio_logger | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions/setup-java@v3 | ||
with: | ||
java-version: "12.x" | ||
distribution: 'zulu' | ||
- uses: subosito/flutter-action@v2 | ||
with: | ||
channel: "stable" | ||
|
||
- name: Install Dependencies | ||
run: flutter pub get | ||
|
||
- name: Format | ||
run: dart format --set-exit-if-changed . | ||
|
||
- name: Analyze | ||
run: flutter analyze --fatal-infos --fatal-warnings . | ||
|
||
- name: Run tests | ||
run: flutter test --no-pub --coverage | ||
|
||
- name: Check Code Coverage | ||
uses: VeryGoodOpenSource/very_good_coverage@v2.2.0 | ||
with: | ||
path: packages/talker_dio_logger/coverage/lcov.info | ||
min_coverage: 90 | ||
|
||
- name: Upload coverage to Codecov | ||
uses: codecov/codecov-action@v3 | ||
with: | ||
token: ${{ secrets.CODECOV_TOKEN }} | ||
|
||
# - 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@v2.2.0 | ||
# with: | ||
# min_coverage: 30 | ||
# path: talker_dio_logger_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
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 |
---|---|---|
|
@@ -6,4 +6,7 @@ | |
"source.organizeImports": "explicit" | ||
}, | ||
"editor.formatOnSave": true, | ||
"cSpell.words": [ | ||
"endtemplate" | ||
], | ||
} |
Oops, something went wrong.