Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
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
Prev Previous commit
Next Next commit
Add logging to melos
  • Loading branch information
buenaflor committed Aug 5, 2025
commit 0cae93e6bde8918295292d0f2fc9fc2238c7e567
10 changes: 5 additions & 5 deletions .github/workflows/logging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ on:
- '.github/workflows/analyze.yml'
- '.github/actions/dart-test/**'
- '.github/actions/coverage/**'
- 'dart/**'
- 'logging/**'
- 'packages/dart/**'
- 'packages/logging/**'

jobs:
cancel-previous-workflow:
Expand All @@ -39,17 +39,17 @@ jobs:

- uses: ./.github/actions/dart-test
with:
directory: logging
directory: packages/logging

- uses: ./.github/actions/coverage
if: runner.os == 'Linux' && matrix.sdk == 'stable'
with:
token: ${{ secrets.CODECOV_TOKEN }}
directory: logging
directory: packages/logging
coverage: sentry_logging
min-coverage: 90

analyze:
uses: ./.github/workflows/analyze.yml
with:
package: logging
package: packages/logging
1 change: 0 additions & 1 deletion logging/CHANGELOG.md

This file was deleted.

3 changes: 0 additions & 3 deletions logging/lib/sentry_logging.dart

This file was deleted.

File renamed without changes.
1 change: 1 addition & 0 deletions packages/logging/CHANGELOG.md
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes.
3 changes: 3 additions & 0 deletions packages/logging/lib/sentry_logging.dart
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
library;

export '../../../logging/lib/src/logging_integration.dart';
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import 'package:meta/meta.dart';

import 'package:sentry/sentry.dart';

import 'no_such_method_provider.dart';
import '../../../logging/test/no_such_method_provider.dart';

final fakeDsn = 'https://[email protected]/1234567';

Expand Down
File renamed without changes.
Loading