We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5184415 commit 6a97a6bCopy full SHA for 6a97a6b
.github/workflows/runnable.yml
@@ -47,7 +47,9 @@ jobs:
47
run: dart pub publish --dry-run
48
- name: Generate docs
49
if: matrix.flutter-version != 'min'
50
- run: dart doc --dry-run .
+ run: |
51
+ dart pub global activate dartdoc
52
+ dart doc --dry-run .
53
54
test_iOS:
55
needs: analyze
pubspec.yaml
@@ -37,6 +37,7 @@ dev_dependencies:
37
sdk: flutter
38
flutter_test:
39
40
+ dartdoc: ^8.3.2 # https://github.com/dart-lang/dartdoc/issues/3947
41
42
flutter:
43
assets:
0 commit comments