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 9
9
# “At 00:00 (UTC) on Sunday.”
10
10
- cron : ' 0 0 * * 0'
11
11
12
+ env :
13
+ PUB_ENVIRONMENT : bot.github
14
+
12
15
jobs :
13
16
build :
14
17
runs-on : ubuntu-latest
15
-
16
- container :
17
- image : google/dart:beta
18
+ strategy :
19
+ fail-fast : false
20
+ matrix :
21
+ sdk : [dev, stable]
18
22
19
23
steps :
20
24
- uses : actions/checkout@v2
21
-
25
+ - uses : dart-lang/setup-dart@v1
26
+ with :
27
+ sdk : ${{ matrix.sdk }}
28
+
22
29
- name : pub get
23
- run : pub get
30
+ run : dart pub get
24
31
25
32
- name : dart format
26
33
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
+
1
5
## 0.2.1
2
6
3
7
- 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;
13
13
* A marker annotation used to annotate test methods which are expected to fail
14
14
* when asserts are enabled.
15
15
*/
16
- const _AssertFailingTest assertFailingTest = _AssertFailingTest ();
16
+ const Object assertFailingTest = _AssertFailingTest ();
17
17
18
18
/**
19
19
* A marker annotation used to annotate test methods which are expected to fail.
20
20
*/
21
- const FailingTest failingTest = FailingTest ();
21
+ const Object failingTest = FailingTest ();
22
22
23
23
/**
24
24
* A marker annotation used to instruct dart2js to keep reflection information
25
25
* for the annotated classes.
26
26
*/
27
- const _ReflectiveTest reflectiveTest = _ReflectiveTest ();
27
+ const Object reflectiveTest = _ReflectiveTest ();
28
28
29
29
/**
30
30
* A marker annotation used to annotate test methods that should be skipped.
31
31
*/
32
- const SkippedTest skippedTest = SkippedTest ();
32
+ const Object skippedTest = SkippedTest ();
33
33
34
34
/**
35
35
* A marker annotation used to annotate "solo" groups and tests.
36
36
*/
37
- const _SoloTest soloTest = _SoloTest ();
37
+ const Object soloTest = _SoloTest ();
38
38
39
39
final List <_Group > _currentGroups = < _Group > [];
40
40
int _currentSuiteLevel = 0 ;
Original file line number Diff line number Diff line change 1
1
name : test_reflective_loader
2
- version : 0.2.1
2
+ version : 0.2.2
3
3
description : Support for discovering tests and test suites using reflection.
4
4
repository : https://github.com/dart-lang/test_reflective_loader
5
5
6
6
environment :
7
7
sdk : ' >=2.12.0 <3.0.0'
8
8
9
9
dependencies :
10
- lints : ^1.0.0
11
10
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