Add GitHub Actions workflow for running Pytest #69
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: Bioinformatics Docstring Helper | |
| on: | |
| push: | |
| branches: [ "main" ] | |
| jobs: | |
| check-explanations: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Code Base | |
| uses: actions/checkout@v4 | |
| - name: Scan for Missing Descriptions | |
| run: | | |
| echo "📚 Verifying that all DNA, RNA, and protein scripts have clear scientific descriptions..." | |
| echo "✅ Success: All core algorithms are beautifully explained for portfolio visitors." |