Commit 67f8f7f Peter Bryant
committed
0 parents commit 67f8f7f Copy full SHA for 67f8f7f
File tree 8 files changed +66
-0
lines changed
8 files changed +66
-0
lines changed Original file line number Diff line number Diff line change
1
+ name : Test
2
+
3
+ on : [push, pull_request]
4
+
5
+ jobs :
6
+ test :
7
+ runs-on : ubuntu-latest
8
+
9
+ steps :
10
+ - uses : actions/checkout@v2
11
+ - name : Setup Dart
12
+ uses : dart-lang/setup-dart@v1
13
+
14
+ - name : Install dependencies
15
+ run : dart pub get
16
+
17
+ - name : Verify formatting
18
+ run : dart format --output=none --set-exit-if-changed .
19
+
20
+ - name : Analyze project source
21
+ run : dart analyze
22
+
23
+ - name : Check imports
24
+ run : dart pub run import_sorter:main --exit-if-changed
25
+
26
+ - name : Run tests
27
+ run : dart test
Original file line number Diff line number Diff line change
1
+ # Files and directories created by pub
2
+ .dart_tool /
3
+ .packages
4
+
5
+ # Omit commiting pubspec.lock for library packages:
6
+ # https://dart.dev/guides/libraries/private-files#pubspeclock
7
+ pubspec.lock
8
+
9
+ # Conventional directory for build outputs
10
+ build /
11
+
12
+ # Directory created by dartdoc
13
+ doc /api /
Original file line number Diff line number Diff line change
1
+ ## 1.0.0
2
+
3
+ - Initial version, created by Stagehand
Original file line number Diff line number Diff line change
1
+ # Passputter
2
+
3
+ Easily authenticate using OAuth 2.0 client/password grants.
Original file line number Diff line number Diff line change
1
+ include : package:very_good_analysis/analysis_options.yaml
Original file line number Diff line number Diff line change
1
+ import 'package:passputter/passputter.dart' ;
2
+
3
+ void main () {}
Original file line number Diff line number Diff line change
1
+ /// Easily authenticate using OAuth 2.0 client/password grants.
2
+ library passputter;
Original file line number Diff line number Diff line change
1
+ name : passputter
2
+ description : Easily authenticate using OAuth 2.0 client/password grants.
3
+ version : 1.0.0
4
+
5
+ environment :
6
+ sdk : " >=2.12.0 <3.0.0"
7
+
8
+ dev_dependencies :
9
+ import_sorter : ^4.5.0
10
+ test : ^1.17.3
11
+ very_good_analysis : ^2.0.3
12
+
13
+ import_sorter :
14
+ emojis : true
You can’t perform that action at this time.
0 commit comments