This repository has been archived by the owner on Dec 24, 2024. It is now read-only.
chore(deps-dev): bump httpx from 0.28.0 to 0.28.1 #241
Workflow file for this run
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 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: '3.12' | |
cache: 'pipenv' | |
- run: pip install pipenv | |
- run: pipenv install --dev -v | |
- run: pipenv run coverage run --source=app -m pytest | |
- run: pipenv run coverage report | |
- run: pipenv run coverage xml | |
- run: pipenv run mypy . | |
- run: pipenv run pylint --enable-all-extensions --fail-under 5 app | |
- uses: codecov/codecov-action@v5 | |
with: | |
files: coverage.xml | |
token: ${{ secrets.CODECOV_TOKEN }} | |
slug: 1995parham-learning/fastapi101 |