aoc/2023/Justfile

13 lines
160 B
Plaintext
Raw Normal View History

2023-12-01 14:18:05 -05:00
# check
default: check
# show this help (just --list)
help:
just --list
# lint and run tests
check:
poetry run black . --check
poetry run pytest