Skip to content

Add computational complexity guard workflow #31

Add computational complexity guard workflow

Add computational complexity guard workflow #31

Workflow file for this run

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!"