Skip to content

add function to read and formatt diann pg files #143

add function to read and formatt diann pg files

add function to read and formatt diann pg files #143

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.8
uses: actions/setup-python@v2
with:
python-version: "3.8"
- name: Run black
uses: psf/black@stable
- name: Check for debugging print statements
run: |
if grep -rq "print(" gopher; then
echo "Found the following print statements:"
grep -r "print(" gopher
exit 1
fi