This repository was archived by the owner on Jan 14, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +25
-12
lines changed Expand file tree Collapse file tree 4 files changed +25
-12
lines changed Original file line number Diff line number Diff line change 99 # “At 00:00 (UTC) on Sunday.”
1010 - cron : ' 0 0 * * 0'
1111
12+ env :
13+ PUB_ENVIRONMENT : bot.github
14+
1215jobs :
1316 build :
1417 runs-on : ubuntu-latest
15-
16- container :
17- image : google/dart:beta
18+ strategy :
19+ fail-fast : false
20+ matrix :
21+ sdk : [dev, stable]
1822
1923 steps :
2024 - uses : actions/checkout@v2
21-
25+ - uses : dart-lang/setup-dart@v1
26+ with :
27+ sdk : ${{ matrix.sdk }}
28+
2229 - name : pub get
23- run : pub get
30+ run : dart pub get
2431
2532 - name : dart format
2633 run : dart format --output=none --set-exit-if-changed .
Original file line number Diff line number Diff line change 1+ ## 0.2.2
2+
3+ - Update to package: lints 2.0.0 and move it to a dev dependency.
4+
15## 0.2.1
26
37- Use package: lints for analysis.
Original file line number Diff line number Diff line change @@ -13,28 +13,28 @@ import 'package:test/test.dart' as test_package;
1313 * A marker annotation used to annotate test methods which are expected to fail
1414 * when asserts are enabled.
1515 */
16- const _AssertFailingTest assertFailingTest = _AssertFailingTest ();
16+ const Object assertFailingTest = _AssertFailingTest ();
1717
1818/**
1919 * A marker annotation used to annotate test methods which are expected to fail.
2020 */
21- const FailingTest failingTest = FailingTest ();
21+ const Object failingTest = FailingTest ();
2222
2323/**
2424 * A marker annotation used to instruct dart2js to keep reflection information
2525 * for the annotated classes.
2626 */
27- const _ReflectiveTest reflectiveTest = _ReflectiveTest ();
27+ const Object reflectiveTest = _ReflectiveTest ();
2828
2929/**
3030 * A marker annotation used to annotate test methods that should be skipped.
3131 */
32- const SkippedTest skippedTest = SkippedTest ();
32+ const Object skippedTest = SkippedTest ();
3333
3434/**
3535 * A marker annotation used to annotate "solo" groups and tests.
3636 */
37- const _SoloTest soloTest = _SoloTest ();
37+ const Object soloTest = _SoloTest ();
3838
3939final List <_Group > _currentGroups = < _Group > [];
4040int _currentSuiteLevel = 0 ;
Original file line number Diff line number Diff line change 11name : test_reflective_loader
2- version : 0.2.1
2+ version : 0.2.2
33description : Support for discovering tests and test suites using reflection.
44repository : https://github.com/dart-lang/test_reflective_loader
55
66environment :
77 sdk : ' >=2.12.0 <3.0.0'
88
99dependencies :
10- lints : ^1.0.0
1110 test : ^1.16.0
11+
12+ dev_dependencies :
13+ lints : ^2.0.0
You can’t perform that action at this time.
0 commit comments