├── README.md └── badge.svg /README.md: -------------------------------------------------------------------------------- 1 | # Works on my Machine 2 | 3 | [![works on my machine badge](https://cdn.jsdelivr.net/gh/nikku/works-on-my-machine@v0.4.0/badge.svg)](https://github.com/nikku/works-on-my-machine) 4 | 5 | __TLDR:__ This project works well on my machine. It may or may not work on your machine, too. 6 | 7 | 8 | ## Usage 9 | 10 | Include in your `README.md`: 11 | 12 | ```markdown 13 | [![works on my machine badge](https://cdn.jsdelivr.net/gh/nikku/works-on-my-machine@v0.4.0/badge.svg)](https://github.com/nikku/works-on-my-machine) 14 | ``` 15 | 16 | 17 | ## Alternatives 18 | 19 | Someone forced you to write tests and run them on a CI environment? Try [the Volkswagen approach](https://github.com/auchenberg/volkswagen). 20 | 21 | 22 | ## License 23 | 24 | MIT 25 | -------------------------------------------------------------------------------- /badge.svg: -------------------------------------------------------------------------------- 1 | 2 | Works on my Machine 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | works 13 | works 14 | on my machine 15 | on my machine 16 | 17 | 18 | --------------------------------------------------------------------------------