fix(verifier): scope shortcut-overlay display to not-hidden state #67
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] | |
| paths-ignore: | |
| - "*.md" | |
| - "docs/**" | |
| - "LICENSE" | |
| - ".gitignore" | |
| pull_request: | |
| branches: [main] | |
| paths-ignore: | |
| - "*.md" | |
| - "docs/**" | |
| - "LICENSE" | |
| - ".gitignore" | |
| jobs: | |
| lint: | |
| name: Lint and format | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.12" | |
| cache: "pip" | |
| - run: pip install -e ".[dev]" | |
| - run: ruff check . | |
| - run: ruff format --check . | |
| typecheck: | |
| name: Type check | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.12" | |
| cache: "pip" | |
| - run: pip install -e ".[dev]" | |
| - run: mypy core cli.py | |
| test: | |
| name: Unit and integration tests | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.12" | |
| cache: "pip" | |
| - name: Install poppler (provides pdftoppm) | |
| run: sudo apt-get update && sudo apt-get install -y poppler-utils | |
| - run: pip install -e ".[dev]" | |
| - run: pytest --cov=core --cov-report=term-missing |