Commit 401c04f 1 parent c0a7adf commit 401c04f Copy full SHA for 401c04f
File tree 6 files changed +15
-7
lines changed
6 files changed +15
-7
lines changed Original file line number Diff line number Diff line change 8
8
runs-on : ubuntu-latest
9
9
10
10
container :
11
- image : google/ dart:2.12
11
+ image : dart:2.13
12
12
13
13
steps :
14
14
- uses : actions/checkout@v1
15
15
- name : Install dependencies
16
16
run : pub get
17
17
- name : Dart Analyzer
18
- run : dartanalyzer .
18
+ run : dart analyze
19
19
- name : Check Dart Format
20
- run : dartfmt -n --set-exit-if-changed .
20
+ run : dart format --set-exit-if-changed -o none lib test tool example && echo Dart Format 👍 || echo Files needed Dart formatting 😢
21
+ - name : Check if Publishable
22
+ run : dart pub publish --dry-run
Original file line number Diff line number Diff line change
1
+ ## 8.1.3
2
+ - Add per page parameter to stars related activities https://github.com/SpinlockLabs/github.dart/pull/265
3
+
1
4
## 8.1.2
2
5
- Fixes ` RateLimit.fromRateLimitResponse ` to not double cast int
3
6
Original file line number Diff line number Diff line change @@ -14,7 +14,9 @@ Future<void> initViewSourceButton(String script) async {
14
14
// query the DOM for the view source button, handle clicks
15
15
document.querySelector ('#view-source' )? .onClick.listen ((_) {
16
16
// ignore: unsafe_html
17
- final popup = window.open ('https://github.com/SpinlockLabs/github.dart/blob/master/example/$script ' , 'View Source' );
17
+ final popup = window.open (
18
+ 'https://github.com/SpinlockLabs/github.dart/blob/master/example/$script ' ,
19
+ 'View Source' );
18
20
String ? code;
19
21
20
22
var fetched = false ;
Original file line number Diff line number Diff line change @@ -312,7 +312,7 @@ class CheckRunAction {
312
312
required this .label,
313
313
required this .description,
314
314
required this .identifier,
315
- }) : assert (label.length <= 20 ),
315
+ }) : assert (label.length <= 20 ),
316
316
assert (description.length <= 40 ),
317
317
assert (identifier.length <= 20 );
318
318
Original file line number Diff line number Diff line change 1
1
name : github
2
- version : 8.1.2
2
+ version : 8.1.3
3
3
description : A high-level GitHub API Client Library that uses Github's v3 API
4
4
homepage : https://github.com/SpinlockLabs/github.dart
5
5
Original file line number Diff line number Diff line change @@ -16,7 +16,8 @@ void main() {
16
16
"used": 1
17
17
}
18
18
}''' ;
19
- final rateLimit = RateLimit .fromRateLimitResponse (jsonDecode (rateLimitJson));
19
+ final rateLimit =
20
+ RateLimit .fromRateLimitResponse (jsonDecode (rateLimitJson));
20
21
21
22
expect (rateLimit.limit, 5000 );
22
23
expect (rateLimit.remaining, 4999 );
You can’t perform that action at this time.
0 commit comments