docs: add git-native-issue vs Beads comparison #97
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: CI | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| test: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| os: [ubuntu-latest, macos-latest] | |
| env: | |
| GIT_AUTHOR_NAME: "Test User" | |
| GIT_AUTHOR_EMAIL: "test@example.com" | |
| GIT_COMMITTER_NAME: "Test User" | |
| GIT_COMMITTER_EMAIL: "test@example.com" | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install jq (needed for bridge tests) | |
| if: runner.os == 'Linux' | |
| run: sudo apt-get update && sudo apt-get install -y jq | |
| - name: Run test-issue.sh | |
| run: sh t/test-issue.sh | |
| - name: Run test-merge.sh | |
| run: sh t/test-merge.sh | |
| - name: Run test-qol.sh | |
| run: sh t/test-qol.sh | |
| - name: Run test-bridge.sh | |
| run: sh t/test-bridge.sh | |
| - name: Verify make install works | |
| run: make install prefix="${{ runner.temp }}/git-issue" |