Add lookup modules for activations #3873
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: Python QA | |
| on: | |
| workflow_dispatch: | |
| schedule: | |
| - cron: '0 3 * * *' | |
| push: | |
| paths: | |
| - '.github/workflows/python-qa.yaml' | |
| - '**.py' | |
| pull_request: | |
| paths: | |
| - '**.py' | |
| jobs: | |
| run-qa: | |
| name: Run QA | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: "Check out code." | |
| uses: actions/checkout@v6 | |
| - name: "Install uv." | |
| uses: astral-sh/setup-uv@v7 | |
| with: | |
| enable-cache: true | |
| - name: "Install Dependencies." | |
| run: uv sync --all-extras --dev | |
| - name: "Check format." | |
| run: uv run black --check --diff plugins | |
| if: always() | |
| - name: "Check imports." | |
| run: uv run isort --check --diff plugins | |
| if: always() |