update httpx requirement from >=0.25,<0.28 to >=0.25,<0.29 #219
This file contains hidden or 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: | |
| branches: [main] | |
| pull_request: | |
| jobs: | |
| unittests: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.12" | |
| - uses: abatilo/actions-poetry@v4.0.0 | |
| - run: poetry install --extras all | |
| - run: poetry run pytest -v | |
| style: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.12" | |
| - uses: abatilo/actions-poetry@v4.0.0 | |
| - run: poetry install --extras all | |
| - run: poetry run flake8 | |
| - run: poetry run mypy --ignore-missing-imports . | |
| - run: poetry run isort --check --diff . | |
| - run: poetry run black --check --diff . |