Skip to content

280 feature add timestamps to daily show notes #725

280 feature add timestamps to daily show notes

280 feature add timestamps to daily show notes #725

name: Lint and Format
on:
pull_request:
paths:
- "**/*.py"
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.9
- name: Install Linting and Formatting Tools
run: |
pip install flake8 black isort
- name: Check Formatting with black
run: black **/*.py --check
- name: Run flake8 Linting
run: flake8 . --count --show-source --statistics