Bump httpx from 0.25.2 to 0.27.0 #225
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: Build | |
on: | |
- push | |
- pull_request | |
- workflow_call # allow us to use this workflow in other workflows | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- run: pip install poetry | |
- uses: actions/setup-python@v5 | |
with: | |
cache: 'poetry' | |
python-version: '3.10' | |
- run: poetry install -vvv | |
- run: poetry run python -m unittest discover -vb tests | |
- run: poetry build -vvv --no-interaction |