Skip to content

docs: add git-native-issue vs Beads comparison #97

docs: add git-native-issue vs Beads comparison

docs: add git-native-issue vs Beads comparison #97

Workflow file for this run

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"