Skip to content

Add computational complexity guard workflow #3

Add computational complexity guard workflow

Add computational complexity guard workflow #3

name: Python Code Error Advisor
on:
push:
branches: [ "main" ]
jobs:
catch-bugs:
runs-on: ubuntu-latest
steps:
- name: Checkout Code Base
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.10"
- name: Install Static Analysis Tool
run: pip install pyflakes
- name: Scan Scripts for Logic Errors
run: |
echo "馃攳 Scanning 28 bioinformatics files for hidden coding bugs..."
pyflakes . || echo "馃挕 Tip: Check your variable names and indentation alignments!"