-
Notifications
You must be signed in to change notification settings - Fork 341
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
entry_to_string function implemented #465
base: latest
Are you sure you want to change the base?
Conversation
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## latest #465 +/- ##
==========================================
- Coverage 90.59% 90.51% -0.08%
==========================================
Files 47 47
Lines 4379 4439 +60
Branches 587 594 +7
==========================================
+ Hits 3967 4018 +51
- Misses 279 286 +7
- Partials 133 135 +2 ☔ View full report in Codecov by Sentry. |
Checking in to see if you plan to continue work on this, per the project's inactivity policy. Resolving the CI failures is a good next step. |
Hey, sorry. |
The CI runs (GitHub Actions in this case) are essentially just scripts that are run to run tests, examples, and perform other checks on the code. You can look into the It's been long enough that the logs from the failed runs have aged off. I recommend you run the tests locally on your own machine to see what is failing, and then fix that. You can look at the test documentation for instructions on building and running the tests, or just copy what the GitHub Action does. |
Thank you ! I will take a look at this again soon , I hope :/. My semester is packed but I do want to try working on code like this! |
Implemented entry_to_string function.
Wrote 3-4 simple tests for it.
Wrote documentation for entry_to_string in /include/stumpless/entry.h
Let me know what changes I should make.
#448