Skip to content

Force Claude to use .claude/ in current directory, not parent paths #58

Force Claude to use .claude/ in current directory, not parent paths

Force Claude to use .claude/ in current directory, not parent paths #58

Workflow file for this run

name: Test Installation
on:
pull_request:
branches: [ main ]
push:
branches: [ main ]
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
python-version: ['3.8', '3.10', '3.12']
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Test installation
run: |
python install.py
- name: Verify commands installed
run: |
python -c "import os; assert os.path.exists(os.path.expanduser('~/.claude/commands/commit.md'))"