Bump anyio from 4.2.0 to 4.4.0 #223
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 |