You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Contributions in the form of issues and pull requests are welcome. Please read the following guidelines before contributing.
4
+
5
+
## Pre-commit Hooks
6
+
7
+
This project uses [pre-commit](https://pre-commit.com/) to run a series of checks before committing code. To install the pre-commit hooks, run the following command:
8
+
9
+
```bash
10
+
pre-commit install
11
+
```
12
+
13
+
Run the following command to run the pre-commit hooks on all files:
14
+
15
+
```bash
16
+
pre-commit run --all-files
17
+
```
18
+
19
+
## Security Testing
20
+
21
+
This project uses [KICS](https://docs.kics.io/latest/getting-started/) to scan for security issues in the infrastructure such as the `Dockerfile`. To run the scan, run the following command:
This will generate a `results.json` file as well as print the contents to the console. Any findings above a `low` severity should be addressed before committing code as they will fail the CI pipeline.
0 commit comments