Skip to content

Commit 6a97a6b

Browse files
committed
💚 Try to fix dart doc
1 parent 5184415 commit 6a97a6b

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

.github/workflows/runnable.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,9 @@ jobs:
4747
run: dart pub publish --dry-run
4848
- name: Generate docs
4949
if: matrix.flutter-version != 'min'
50-
run: dart doc --dry-run .
50+
run: |
51+
dart pub global activate dartdoc
52+
dart doc --dry-run .
5153
5254
test_iOS:
5355
needs: analyze

pubspec.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ dev_dependencies:
3737
sdk: flutter
3838
flutter_test:
3939
sdk: flutter
40+
dartdoc: ^8.3.2 # https://github.com/dart-lang/dartdoc/issues/3947
4041

4142
flutter:
4243
assets:

0 commit comments

Comments
 (0)