How do show my tests passing/failing in Github?

前端 未结 4 507
情话喂你
情话喂你 2021-01-30 03:55

I have a project on github that has extensive unit tests (using mocha for node.js).

I\'d like to show off by showing those tests passing/failing on each page. I notice

4条回答
  •  梦如初夏
    2021-01-30 04:28

    CircleCI the status badges are also simply images that you can drop into your README.md file with the markdown. For example:

    ![Build Status](https://circleci.com/gh//.png?circle-token=:circle-token)
    

    or

    ![Build Status](https://circleci.com/gh//.svg?style=shield&circle-token=:circle-token)
    

提交回复
热议问题