v0.3.2 - Recall Feature & TUI Framework #6
Workflow file for this run
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: Validate Published Package | |
| on: | |
| release: | |
| types: [published] | |
| jobs: | |
| validate-pypi: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| os: [ubuntu-latest, macos-latest, windows-latest] | |
| python-version: ["3.11", "3.12"] | |
| steps: | |
| - name: Set up Python ${{ matrix.python-version }} | |
| uses: actions/setup-python@v4 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Wait for PyPI to update | |
| run: sleep 120 # Wait 2 minutes for PyPI to propagate | |
| - name: Install from PyPI with pipx | |
| run: | | |
| python -m pip install pipx | |
| pipx install eyelet | |
| - name: Test basic functionality | |
| run: | | |
| eyelet --version | |
| eyelet --help | |
| eyelet validate --help | |
| eyelet configure --help | |
| eyelet doctor --help | |
| eyelet query --help | |
| - name: Test with uvx | |
| run: | | |
| python -m pip install uv | |
| uvx eyelet --version | |
| uvx eyelet validate --help | |
| uvx eyelet doctor --help | |
| if: matrix.os != 'windows-latest' # uvx may have issues on Windows | |
| - name: Create test settings and validate | |
| run: | | |
| mkdir -p test-project/.claude | |
| cat > test-project/.claude/settings.json << 'EOF' | |
| { | |
| "hooks": [ | |
| { | |
| "type": "PreToolUse", | |
| "handler": { | |
| "type": "command", | |
| "command": "echo test" | |
| }, | |
| "matcher": ".*" | |
| } | |
| ] | |
| } | |
| EOF | |
| cd test-project | |
| eyelet validate settings .claude/settings.json | |
| shell: bash | |
| - name: Test completion installation | |
| run: | | |
| eyelet completion --help | |
| continue-on-error: true |