You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
On creating a new action, there is some hint about being used with Flutter
# Your project will need to have tests in test/ and a dependency on
# package:test for this step to succeed. Note that Flutter projects will
# want to change this to 'flutter test'.
- name: Run tests
run: dart test
And since my project is actually Flutter, changing this to flutter test, gives the error
Flutter users should run flutter pub get instead of dart pub get.
And on changing the action to flutter pub get there is an error
flutter: command not found
I guess this action is for Dart, not Flutter. In this case, please change the action comments accordingly.
The text was updated successfully, but these errors were encountered:
I think the resolution is to delete that comment, or expand it to point to the flutter specific action. I just ran into this myself on a new repo. It is a dart package whose './example` uses flutter, so github doesn't recommend a flutter action, it recommends this one.
On creating a new action, there is some hint about being used with Flutter
And since my project is actually Flutter, changing this to
flutter test
, gives the errorAnd on changing the action to
flutter pub get
there is an errorI guess this action is for Dart, not Flutter. In this case, please change the action comments accordingly.
The text was updated successfully, but these errors were encountered: