Files
FiDA-Gen-Img-Flux2-klein/.github/workflows/ci.yaml
zcr b3eda2f7c7
Some checks failed
CI / lint (push) Failing after 11s
1
2026-03-18 11:09:01 +08:00

21 lines
545 B
YAML
Executable File

name: CI
on: push
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: "3.10"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install ruff==0.6.8
- name: Run Ruff
run: ruff check --output-format=github .
- name: Check imports
run: ruff check --select I --output-format=github .
- name: Check formatting
run: ruff format --check .