mirror of
https://github.com/invoke-ai/InvokeAI
synced 2024-08-30 20:32:17 +00:00
ci: add comments to workflows
This commit is contained in:
parent
b2b65a9012
commit
a865277667
4
.github/workflows/check-frontend.yml
vendored
4
.github/workflows/check-frontend.yml
vendored
@ -1,3 +1,7 @@
|
||||
# This workflow runs the frontend code quality checks.
|
||||
#
|
||||
# It may be triggered via dispatch, or by another workflow.
|
||||
|
||||
name: 'Check: frontend'
|
||||
|
||||
on:
|
||||
|
4
.github/workflows/check-pytest.yml
vendored
4
.github/workflows/check-pytest.yml
vendored
@ -1,3 +1,7 @@
|
||||
# This workflow runs pytest on the codebase in a matrix of platforms.
|
||||
#
|
||||
# It may be triggered via dispatch, or by another workflow.
|
||||
|
||||
name: 'Check: pytest'
|
||||
|
||||
on:
|
||||
|
6
.github/workflows/check-python.yml
vendored
6
.github/workflows/check-python.yml
vendored
@ -1,3 +1,9 @@
|
||||
# This workflow runs the python code quality checks.
|
||||
#
|
||||
# It may be triggered via dispatch, or by another workflow.
|
||||
#
|
||||
# TODO: Add mypy or pyright to the checks.
|
||||
|
||||
name: 'Check: python'
|
||||
|
||||
on:
|
||||
|
@ -1,3 +1,8 @@
|
||||
# This workflow runs of `check-frontend.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 check-frontend'
|
||||
|
||||
on:
|
||||
|
5
.github/workflows/on-change-check-python.yml
vendored
5
.github/workflows/on-change-check-python.yml
vendored
@ -1,3 +1,8 @@
|
||||
# This workflow runs of `check-python.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 check-python'
|
||||
|
||||
on:
|
||||
|
5
.github/workflows/on-change-pytest.yml
vendored
5
.github/workflows/on-change-pytest.yml
vendored
@ -1,3 +1,8 @@
|
||||
# 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:
|
||||
|
Loading…
Reference in New Issue
Block a user