docs: update CONTRIBUTING with a note about vibe-coding. #761
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Man pages | |
| on: | |
| push: | |
| branches: [master, features] | |
| pull_request: | |
| branches: [master, features] | |
| jobs: | |
| e2e-tests: | |
| runs-on: ubuntu-latest | |
| name: Check | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Compile man pages | |
| run: | | |
| sudo gem install ronn | |
| make manpage | |
| - name: manpage (section 1) | |
| run: | | |
| man -P $(which cat) manpage/kosmorro.1 | |
| - name: manpage (section 7) | |
| run: | | |
| man -P $(which cat) manpage/kosmorro.7 |