2024-03-02 10:37:49 +00:00
|
|
|
# TODO: Add mypy or pyright to the checks.
|
|
|
|
|
|
|
|
name: 'python checks'
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- 'main'
|
|
|
|
pull_request:
|
|
|
|
types:
|
|
|
|
- 'ready_for_review'
|
|
|
|
- 'opened'
|
|
|
|
- 'synchronize'
|
|
|
|
merge_group:
|
|
|
|
workflow_dispatch:
|
|
|
|
workflow_call:
|
|
|
|
|
|
|
|
jobs:
|
2024-03-02 10:54:16 +00:00
|
|
|
python-checks:
|
2024-03-02 10:37:49 +00:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
timeout-minutes: 5 # expected run time: <1 min
|
|
|
|
steps:
|
|
|
|
- name: checkout
|
|
|
|
uses: actions/checkout@v4
|
|
|
|
|
|
|
|
- name: check for changed python files
|
2024-03-02 12:05:24 +00:00
|
|
|
if: ${{ github.event_name != 'workflow_dispatch' && github.event_name != 'workflow_call' }}
|
2024-03-02 10:37:49 +00:00
|
|
|
id: changed-files
|
|
|
|
uses: tj-actions/changed-files@v42
|
|
|
|
with:
|
|
|
|
files_yaml: |
|
|
|
|
python:
|
|
|
|
- 'pyproject.toml'
|
|
|
|
- 'invokeai/**'
|
|
|
|
- '!invokeai/frontend/web/**'
|
|
|
|
- 'tests/**'
|
|
|
|
|
|
|
|
- name: setup python
|
2024-03-02 12:05:24 +00:00
|
|
|
if: ${{ steps.changed-files.outputs.python_any_changed == 'true' || github.event_name == 'workflow_dispatch' || github.event_name == 'workflow_call' }}
|
2024-03-02 10:37:49 +00:00
|
|
|
uses: actions/setup-python@v5
|
|
|
|
with:
|
|
|
|
python-version: '3.10'
|
|
|
|
cache: pip
|
|
|
|
cache-dependency-path: pyproject.toml
|
|
|
|
|
|
|
|
- name: install ruff
|
2024-03-02 12:05:24 +00:00
|
|
|
if: ${{ steps.changed-files.outputs.python_any_changed == 'true' || github.event_name == 'workflow_dispatch' || github.event_name == 'workflow_call' }}
|
2024-03-02 10:37:49 +00:00
|
|
|
run: pip install ruff
|
|
|
|
shell: bash
|
|
|
|
|
|
|
|
- name: ruff check
|
2024-03-02 12:05:24 +00:00
|
|
|
if: ${{ steps.changed-files.outputs.python_any_changed == 'true' || github.event_name == 'workflow_dispatch' || github.event_name == 'workflow_call' }}
|
2024-03-02 10:37:49 +00:00
|
|
|
run: ruff check --output-format=github .
|
|
|
|
shell: bash
|
|
|
|
|
|
|
|
- name: ruff format
|
2024-03-02 12:05:24 +00:00
|
|
|
if: ${{ steps.changed-files.outputs.python_any_changed == 'true' || github.event_name == 'workflow_dispatch' || github.event_name == 'workflow_call' }}
|
2024-03-02 10:37:49 +00:00
|
|
|
run: ruff format --check .
|
|
|
|
shell: bash
|