InvokeAI/.github/workflows/style-checks.yml
2023-11-11 10:42:27 +11:00

25 lines
417 B
YAML

name: style checks
on:
pull_request:
push:
branches: main
jobs:
black:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Install dependencies with pip
run: |
pip install ruff
- run: ruff check .
- run: ruff format --check .