mirror of
https://github.com/kohya-ss/sd-scripts.git
synced 2026-04-08 06:28:48 +00:00
18 lines
213 B
Makefile
18 lines
213 B
Makefile
.PHONY: all
|
|
all:
|
|
|
|
.PHONY: style
|
|
style:
|
|
ruff format --respect-gitignore
|
|
|
|
.PHONY: test_style
|
|
test_style:
|
|
ruff format --respect-gitignore --check
|
|
|
|
.PHONY: test
|
|
test: test_style
|
|
|
|
|
|
.DELETE_ON_ERROR:
|
|
SHELL=/bin/bash
|