-
Notifications
You must be signed in to change notification settings - Fork 23
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
add dart implementation #83
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This looks good to me, with a couple of comments.
Additionally, I would love it if we could run the tests in CI:
Could you please add a dart.yaml
workflow file here that will run the dart tests? Something like:
name: Dart
on:
pull_request:
branches: [main]
push:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dart-lang/setup-dart@v1
- run: dart pub get
- run: dart format --output=none --set-exit-if-changed .
- run: dart analyze
- run: dart test
```
@@ -0,0 +1,29 @@ | |||
BSD 3-Clause License | |||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
are you open to use the main license for this repo?
https://github.com/sign-language-processing/pose/blob/master/LICENSE.txt
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I could replace/remove the license but pub dev needs a open license.
name: pose | ||
description: Dart library for loading, viewing, augmenting, and handling .pose files | ||
version: 1.1.5 | ||
repository: https://github.com/bipinkrish/pose |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
should we move this away? if you want to keep it under your repository, maybe we should create a git sub-module that just links to your repo?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That is for pub.dev to link a repository.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
maybe we should create a git sub-module that just links to your repo?
Your call, either is ok for me.
On it. |
* workflow for dart * dart format test fix
Added workflow, your call on sub-module |
I am sorry I messed it up |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good! Tests are passing
Added dart code, open to comments