Add computational complexity guard workflow #31
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 Bioinformatics Code Quality Check | |
| on: | |
| push: | |
| branches: [ "main" ] | |
| pull_request: | |
| branches: [ "main" ] | |
| jobs: | |
| validate-code: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Repository Code | |
| uses: actions/checkout@v4 | |
| - name: Set Up Python Environment | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.10" | |
| - name: Clean Environment Check | |
| run: | | |
| python -m pip install --upgrade pip | |
| echo "Ready to scan scripts!" |