Disallow firm names that are too long and cause database errors (#3674) #2178
This file contains 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: Lints | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Flake8 | |
working-directory: perma_web | |
run: | | |
pip install `egrep -o 'flake8==\S+' requirements.txt` # install our version of flake8 | |
flake8 |