cljdoc

https://cljdoc.org/ & https://github.com/cljdoc/cljdoc
Jakub Holý 2021-05-27T07:32:08.021100Z

What is the simplest wayt to check that my project, as a source code on my disk, would not break cljdoc analysis? F.ex. I could run on my CI to verify new changes do not suddenly break it? 🙏

lread 2021-05-27T22:13:46.023500Z

@holyjak there is https://github.com/cljdoc/cljdoc/blob/master/doc/userguide/for-library-authors.adoc#configuring-articles. But I think you are more thinking of the full analysis step. I suppose you could run cljdoc-analyzer on a jar locally deployed on CI and then check the result…

✅ 1
martinklepsch 2021-05-27T23:20:14.025Z

> I suppose you could run cljdoc-analyzer on a jar locally deployed on CI and then check the result… That’s actually a pretty cool idea! Just having the confidence that the docs build when you publish would be great!

martinklepsch 2021-05-27T23:20:47.025600Z

We could probably package this as a GitHub action/docker container pretty easily

🙏 1