Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
f70510a
:construction_worker: simplify talker Github actions
techouse May 2, 2025
b232219
:construction_worker: simplify talker Github actions
techouse May 2, 2025
27b7568
:construction_worker: simplify talker Github actions
techouse May 2, 2025
af1f465
:construction_worker: simplify talker Github actions
techouse May 2, 2025
876173b
:construction_worker: simplify talker Github actions
techouse May 2, 2025
9595d74
:construction_worker: simplify talker Github actions
techouse May 2, 2025
19f5225
:construction_worker: simplify talker Github actions
techouse May 2, 2025
6bbcf9c
:construction_worker: simplify talker Github actions
techouse May 2, 2025
ca59b89
:construction_worker: simplify talker Github actions
techouse May 2, 2025
884ff09
:construction_worker: simplify talker Github actions
techouse May 2, 2025
e5f9036
:construction_worker: simplify talker Github actions
techouse May 2, 2025
366235e
:construction_worker: simplify talker Github actions
techouse May 2, 2025
d737d15
:construction_worker: simplify talker Github actions
techouse May 2, 2025
04c77ad
:construction_worker: simplify talker Github actions
techouse May 2, 2025
2fbe975
:construction_worker: simplify talker Github actions
techouse May 3, 2025
4758919
:construction_worker: simplify talker Github actions
techouse May 3, 2025
6977ee7
:construction_worker: simplify talker Github actions
techouse May 3, 2025
8a9a3d0
:construction_worker: simplify talker Github actions
techouse May 3, 2025
a2ab8bd
:construction_worker: simplify talker Github actions
techouse May 3, 2025
3c13a67
:construction_worker: simplify talker Github actions
techouse May 3, 2025
a6e5637
:construction_worker: simplify talker Github actions
techouse May 3, 2025
3a61d54
:construction_worker: simplify talker Github actions
techouse May 3, 2025
0a20cd1
:construction_worker: simplify talker Github actions
techouse May 3, 2025
dcea356
:construction_worker: simplify talker Github actions
techouse May 3, 2025
9cf2183
:construction_worker: simplify talker Github actions
techouse May 3, 2025
ab77c58
:speech_balloon: update workflow name for consistency
techouse May 3, 2025
3fe2a1d
:speech_balloon: update workflow name for consistency
techouse May 3, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
58 changes: 7 additions & 51 deletions .github/workflows/talker.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,60 +5,16 @@ on:
paths:
- "packages/talker/**"
- ".github/workflows/talker.yaml"

pull_request:
paths:
- "packages/talker/**"
- ".github/workflows/talker.yaml"
permissions:
contents: read

jobs:
build:
defaults:
run:
working-directory: packages/talker

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
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/[email protected]
with:
path: packages/talker/coverage/lcov.info
min_coverage: 90

- name: Upload coverage to Codecov
uses: codecov/codecov-action@v5
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/[email protected]
# with:
# min_coverage: 30
# path: talker_logger/coverage/lcov.info
test:
uses: ./.github/workflows/test.yaml
with:
package: talker
sdk: dart
58 changes: 7 additions & 51 deletions .github/workflows/talker_bloc_logger.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,60 +5,16 @@ on:
paths:
- "packages/talker_bloc_logger/**"
- ".github/workflows/talker_bloc_logger.yaml"

pull_request:
paths:
- "packages/talker_bloc_logger/**"
- ".github/workflows/talker_bloc_logger.yaml"
permissions:
contents: read

jobs:
build:
defaults:
run:
working-directory: packages/talker_bloc_logger

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
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/[email protected]
with:
path: packages/talker_bloc_logger/coverage/lcov.info
min_coverage: 90

- name: Upload coverage to Codecov
uses: codecov/codecov-action@v5
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/[email protected]
# with:
# min_coverage: 30
# path: talker_bloc_logger_logger/coverage/lcov.info
test:
uses: ./.github/workflows/test.yaml
with:
package: talker_bloc_logger
sdk: dart
58 changes: 7 additions & 51 deletions .github/workflows/talker_dio_logger.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,60 +5,16 @@ on:
paths:
- "packages/talker_dio_logger/**"
- ".github/workflows/talker_dio_logger.yaml"

pull_request:
paths:
- "packages/talker_dio_logger/**"
- ".github/workflows/talker_dio_logger.yaml"
permissions:
contents: read

jobs:
build:
defaults:
run:
working-directory: packages/talker_dio_logger

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
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/[email protected]
with:
path: packages/talker_dio_logger/coverage/lcov.info
min_coverage: 90

- name: Upload coverage to Codecov
uses: codecov/codecov-action@v5
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/[email protected]
# with:
# min_coverage: 30
# path: talker_dio_logger_logger/coverage/lcov.info
test:
uses: ./.github/workflows/test.yaml
with:
package: talker_dio_logger
sdk: dart
67 changes: 7 additions & 60 deletions .github/workflows/talker_flutter.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,69 +5,16 @@ on:
paths:
- "packages/talker_flutter/**"
- ".github/workflows/talker_flutter.yaml"

pull_request:
paths:
- "packages/talker_flutter/**"
- ".github/workflows/talker_flutter.yaml"
permissions:
contents: read

jobs:
build:
defaults:
run:
working-directory: packages/talker_flutter

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
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/[email protected]
# with:
# path: packages/talker_flutter/coverage/lcov.info
# min_coverage: 0

# - name: Upload coverage to Codecov
# uses: codecov/codecov-action@v1
# with:
# token: ${{ secrets.CODECOV_TOKEN }}

# - name: Build WEB
# run: |
# cd example
# flutter build web --release --web-renderer canvaskit

# - name: Deploy WEB
# run: |
# cd example/build/web
# git init

# git config --global user.email [email protected]
# git config --global user.name Stanislav Ilin
# git status

# git remote add origin https://${{secrets.commit_secret}}@github.com/Frezyx/talker.git
# git checkout -b gh-pages
# git add --all
# git commit -m "update"
# git push origin gh-pages -f
test:
uses: ./.github/workflows/test.yaml
with:
package: talker_flutter
sdk: flutter
59 changes: 8 additions & 51 deletions .github/workflows/talker_logger.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,60 +5,17 @@ on:
paths:
- "packages/talker_logger/**"
- ".github/workflows/talker_logger.yaml"

pull_request:
paths:
- "packages/talker_logger/**"
- ".github/workflows/talker_logger.yaml"
permissions:
contents: read

jobs:
build:
defaults:
run:
working-directory: packages/talker_logger

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
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/[email protected]
with:
path: packages/talker_logger/coverage/lcov.info
min_coverage: 90

- name: Upload coverage to Codecov
uses: codecov/codecov-action@v5
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/[email protected]
# with:
# min_coverage: 30
# path: talker_logger/coverage/lcov.info
test:
uses: ./.github/workflows/test.yaml
with:
package: talker_logger
sdk: dart
chrome: false
Loading