Add computational complexity guard workflow #3
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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!" |