Skip to content

decoy prefix to label PSMs instead of alternating T/D schema #756

decoy prefix to label PSMs instead of alternating T/D schema

decoy prefix to label PSMs instead of alternating T/D schema #756

Workflow file for this run

name: Lint
on: [push, pull_request]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup Python 3.10
uses: actions/setup-python@v2
with:
python-version: "3.10"
- name: Run black
uses: psf/black@stable
- name: Check for debugging print statements
run: |
if grep -rq "print(" casanovo; then
echo "Found the following print statements:"
grep -r "print(" casanovo
exit 1
fi