chore: update thumbnails for find methods
visualizations (#56)
#169
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: Run quality checks | |
# on all branches | |
on: | |
push: | |
branches: | |
- '*' | |
jobs: | |
publish: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-python@v2 | |
with: | |
python-version: 3.8 | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install ".[ci]" | |
- name: Check sentence casing | |
run: | | |
poe check-sentence-casing | |
- name: Check options | |
run: | | |
poe check-options |