chore(deps): bump rich from 13.6.0 to 13.7.0 (#89) #140
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: ci | |
on: push | |
jobs: | |
test-python: | |
name: test python | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: '3.11' | |
- run: pip install pipenv | |
- run: pipenv install --dev -v | |
- run: pipenv run pytest | |
- run: pipenv run mypy . | |
- run: pipenv run pylint --enable-all-extensions --fail-under 8 harpocrates |