-
Notifications
You must be signed in to change notification settings - Fork 66
🌱 Tidy up Makefile and remove convert-diff GHA #1900
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
Conversation
✅ Deploy Preview for olmv1 ready!
To edit notification comments on pull requests, go to your Netlify site configuration. |
Makefile
Outdated
build-docs: | ||
. $(VENV)/activate; \ | ||
mkdocs build | ||
|
||
.PHONY: serve-docs | ||
serve-docs: venv | ||
serve-docs: | ||
. $(VENV)/activate; \ | ||
mkdocs serve | ||
|
||
.PHONY: deploy-docs | ||
deploy-docs: venv | ||
deploy-docs: |
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.
What's the story here? Makefile.venv
has some doc text that makes this sounds important.
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.
my bad - ide was complaining so I thought they were left over from a few months back when there was some makefile refactoring. I've put them back in.
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #1900 +/- ##
==========================================
- Coverage 69.27% 69.21% -0.06%
==========================================
Files 67 67
Lines 5302 5302
==========================================
- Hits 3673 3670 -3
- Misses 1397 1399 +2
- Partials 232 233 +1
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
3747b86
to
07b7980
Compare
Signed-off-by: Per Goncalves da Silva <[email protected]>
07b7980
to
144e8d9
Compare
115a122
Description
Tidies up the Makefile by combining the bundle manifest generation recipe with verify.
We also remove the convert-diff GHA in favor or running the test in the verify GHA
Reviewer Checklist