Your Task

1. Implement a Python script analyze.py

The script should:

Violations to Detect:

2. Classify each file

Based on the number and type of violations:

3. Output format

One line per file:

<file_path>: CLEAN / LOW RISK / HIGH RISK

Example:

src/file1.py: HIGH RISK
src/file2.py: CLEAN
src/file3.py: LOW RISK

4. Create a GitHub Actions workflow

It should: