Switched from custom pre-commit script to using the pre-commit tool
All checks were successful
Build and deploy automation_rs / Run pre-commit checks (push) Successful in 4m1s
Build and deploy automation_rs / Build automation_rs (push) Successful in 4m31s
Build and deploy automation_rs / Build Docker image (push) Successful in 50s
Build and deploy automation_rs / Deploy Docker container (push) Successful in 32s

This commit is contained in:
2024-05-07 23:40:23 +02:00
parent 794b8eef19
commit 113f9f926c
4 changed files with 79 additions and 26 deletions

View File

@@ -1,11 +1,12 @@
# automation_rs
Custom home automation solution with google-home integration
Custom home automation solution with Google Home integration and lua scripting.
## Development
Make sure to setup git hooks by running
This repository uses [pre-commit](https://pre-commit.com) to make sure everything is ready to go when committing.
Install the pre-commit hooks by running the following command:
```sh
git config --local core.hooksPath .git-hooks/
```bash
pre-commit install
```