Fix problem of all installed models being assigned "<NOKEY>" #25
Workflow file for this run
This file contains 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
# This workflow runs of `check-pytest.yml` on push or pull request. | |
# | |
# The actual checks are in a separate workflow to support simpler workflow | |
# composition without awkward or complicated conditionals. | |
name: 'On change: run pytest' | |
on: | |
push: | |
branches: | |
- 'main' | |
pull_request: | |
types: | |
- 'ready_for_review' | |
- 'opened' | |
- 'synchronize' | |
merge_group: | |
jobs: | |
check-changed-python-files: | |
if: github.event.pull_request.draft == false | |
runs-on: ubuntu-latest | |
outputs: | |
python_any_changed: ${{ steps.changed-files.outputs.python_any_changed }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Check for changed python files | |
id: changed-files | |
uses: tj-actions/changed-files@v41 | |
with: | |
files_yaml: | | |
python: | |
- 'pyproject.toml' | |
- 'invokeai/**' | |
- '!invokeai/frontend/web/**' | |
- 'tests/**' | |
run-pytest: | |
needs: check-changed-python-files | |
if: ${{ needs.check-changed-python-files.outputs.python_any_changed == 'true' }} | |
uses: ./.github/workflows/check-pytest.yml |