All checks were successful
Build / build (pull_request) Successful in 57s
- add actions workflow - add makefile with build/clean targets - add .gitignore file - update pre-commit hooks
10 lines
176 B
Makefile
10 lines
176 B
Makefile
# run pre-commit
|
|
build:
|
|
python3.11 -m venv venv
|
|
venv/bin/pip install pip --upgrade
|
|
venv/bin/pip install pre-commit
|
|
venv/bin/pre-commit run --all-files
|
|
|
|
clean:
|
|
rm -rf venv
|