Moving fixes
diff --git a/.github/labeler.yml b/.github/labeler.yml index 1cc4b20..16a5ce8 100644 --- a/.github/labeler.yml +++ b/.github/labeler.yml
@@ -108,6 +108,10 @@ - changed-files: - any-glob-to-any-file: 'pkgs/sse/**' +'package:test_reflective_loader': + - changed-files: + - any-glob-to-any-file: 'pkgs/test_reflective_loader/**' + 'package:unified_analytics': - changed-files: - any-glob-to-any-file: 'pkgs/unified_analytics/**'
diff --git a/.github/workflows/test_reflective_loader.yaml b/.github/workflows/test_reflective_loader.yaml new file mode 100644 index 0000000..975c970 --- /dev/null +++ b/.github/workflows/test_reflective_loader.yaml
@@ -0,0 +1,43 @@ +name: package:test_reflective_loader + +on: + # Run on PRs and pushes to the default branch. + push: + branches: [ main ] + paths: + - '.github/workflows/test_reflective_loader.yaml' + - 'pkgs/test_reflective_loader/**' + pull_request: + branches: [ main ] + paths: + - '.github/workflows/test_reflective_loader.yaml' + - 'pkgs/test_reflective_loader/**' + schedule: + - cron: "0 0 * * 0" + +env: + PUB_ENVIRONMENT: bot.github + +defaults: + run: + working-directory: pkgs/test_reflective_loader/ + +jobs: + build: + runs-on: ubuntu-latest + strategy: + fail-fast: false + matrix: + sdk: [dev, 3.1] + + steps: + - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 + - uses: dart-lang/setup-dart@e630b99d28a3b71860378cafdc2a067c71107f94 + with: + sdk: ${{ matrix.sdk }} + + - run: dart pub get + - name: dart format + run: dart format --output=none --set-exit-if-changed . + - run: dart analyze --fatal-infos + - run: dart test
diff --git a/README.md b/README.md index 79d1dde..74be5a9 100644 --- a/README.md +++ b/README.md
@@ -40,6 +40,7 @@ | [source_maps](pkgs/source_maps/) | A library to programmatically manipulate source map files. | [](https://github.com/dart-lang/tools/issues?q=is%3Aissue+is%3Aopen+label%3Apackage%3Asource_maps) | [](https://pub.dev/packages/source_maps) | | [source_span](pkgs/source_span/) | Provides a standard representation for source code locations and spans. | [](https://github.com/dart-lang/tools/issues?q=is%3Aissue+is%3Aopen+label%3Apackage%3Asource_span) | [](https://pub.dev/packages/source_span) | | [sse](pkgs/sse/) | Provides client and server functionality for setting up bi-directional communication through Server Sent Events (SSE) and corresponding POST requests. | [](https://github.com/dart-lang/tools/issues?q=is%3Aissue+is%3Aopen+label%3Apackage%3Asse) | [](https://pub.dev/packages/sse) | +| [test_reflective_loader](pkgs/test_reflective_loader/) | Support for discovering tests and test suites using reflection. | [](https://github.com/dart-lang/tools/issues?q=is%3Aissue+is%3Aopen+label%3Apackage%3Atest_reflective_loader) | [](https://pub.dev/packages/test_reflective_loader) | | [unified_analytics](pkgs/unified_analytics/) | A package for logging analytics for all Dart and Flutter related tooling to Google Analytics. | [](https://github.com/dart-lang/tools/issues?q=is%3Aissue+is%3Aopen+label%3Apackage%3Aunified_analytics) | [](https://pub.dev/packages/unified_analytics) | ## Publishing automation
diff --git a/pkgs/test_reflective_loader/.github/dependabot.yml b/pkgs/test_reflective_loader/.github/dependabot.yml deleted file mode 100644 index cde02ad..0000000 --- a/pkgs/test_reflective_loader/.github/dependabot.yml +++ /dev/null
@@ -1,15 +0,0 @@ -# Dependabot configuration file. -# See https://docs.github.com/en/code-security/dependabot/dependabot-version-updates -version: 2 - -updates: - - package-ecosystem: github-actions - directory: / - schedule: - interval: monthly - labels: - - autosubmit - groups: - github-actions: - patterns: - - "*"
diff --git a/pkgs/test_reflective_loader/.github/workflows/build.yaml b/pkgs/test_reflective_loader/.github/workflows/build.yaml deleted file mode 100644 index 2c15d95..0000000 --- a/pkgs/test_reflective_loader/.github/workflows/build.yaml +++ /dev/null
@@ -1,33 +0,0 @@ -name: Dart - -on: - pull_request: - push: - branches: - - master - schedule: - # “At 00:00 (UTC) on Sunday.” - - cron: '0 0 * * 0' - -env: - PUB_ENVIRONMENT: bot.github - -jobs: - build: - runs-on: ubuntu-latest - strategy: - fail-fast: false - matrix: - sdk: [dev, 3.1] - - steps: - - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 - - uses: dart-lang/setup-dart@e630b99d28a3b71860378cafdc2a067c71107f94 - with: - sdk: ${{ matrix.sdk }} - - - run: dart pub get - - name: dart format - run: dart format --output=none --set-exit-if-changed . - - run: dart analyze --fatal-infos - - run: dart test
diff --git a/pkgs/test_reflective_loader/CHANGELOG.md b/pkgs/test_reflective_loader/CHANGELOG.md index 5fd4c55..803eb0e 100644 --- a/pkgs/test_reflective_loader/CHANGELOG.md +++ b/pkgs/test_reflective_loader/CHANGELOG.md
@@ -1,6 +1,7 @@ -## 0.2.3-wip +## 0.2.3 - Require Dart `^3.1.0`. +- Move to `dart-lang/tools` monorepo. ## 0.2.2
diff --git a/pkgs/test_reflective_loader/README.md b/pkgs/test_reflective_loader/README.md index f7d07db..9b5a83d 100644 --- a/pkgs/test_reflective_loader/README.md +++ b/pkgs/test_reflective_loader/README.md
@@ -1,5 +1,6 @@ -[](https://github.com/dart-lang/test_reflective_loader/actions) +[](https://github.com/dart-lang/tools/actions/workflows/test_reflective_loader.yaml) [](https://pub.dev/packages/test_reflective_loader) +[](https://pub.dev/packages/test_reflective_loader/publisher) Support for discovering tests and test suites using reflection. @@ -24,4 +25,4 @@ Please file feature requests and bugs at the [issue tracker][tracker]. -[tracker]: https://github.com/dart-lang/test_reflective_loader/issues +[tracker]: https://github.com/dart-lang/tools/issues?q=is%3Aissue+is%3Aopen+label%3Apackage%3Atest_reflective_loader
diff --git a/pkgs/test_reflective_loader/pubspec.yaml b/pkgs/test_reflective_loader/pubspec.yaml index dfb3cd0..953ece9 100644 --- a/pkgs/test_reflective_loader/pubspec.yaml +++ b/pkgs/test_reflective_loader/pubspec.yaml
@@ -1,5 +1,5 @@ name: test_reflective_loader -version: 0.2.3-wip +version: 0.2.3 description: Support for discovering tests and test suites using reflection. repository: https://github.com/dart-lang/tools/tree/main/pkgs/test_reflective_loader