feat: migrate to direct API, refactor lib into claim/claims/bot layers #9
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: Lint | |
| on: | |
| pull_request: | |
| permissions: | |
| contents: read | |
| jobs: | |
| lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Install poetry | |
| run: pipx install poetry | |
| - name: Set up Python 3.13 | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: '3.13' | |
| cache: 'poetry' | |
| - name: Install dependencies | |
| run: poetry install --no-root --with dev | |
| - name: Run ruff | |
| run: poetry run ruff check . | |
| - name: Run isort | |
| run: poetry run isort --check . | |
| - name: Run type checker | |
| run: poetry run ty check |