Skip to content

Bump yarl from 1.8.2 to 1.9.2 #613

Bump yarl from 1.8.2 to 1.9.2

Bump yarl from 1.8.2 to 1.9.2 #613

Workflow file for this run

name: Tests
on: [push, pull_request, workflow_dispatch]
env:
FORCE_COLOR: 1
jobs:
test:
name: test w/ Python ${{ matrix.python-version }}
runs-on: ubuntu-latest
strategy:
matrix:
# TODO add 3.12.0-dev when
# aiohttp, frozenlist and yarl support alpha 5+
# https://github.com/python/blurb_it/pull/330#issuecomment-1449496275
# https://github.com/python/bedevere/pull/547#issuecomment-1529153851
python-version: ["3.8", "3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
id: python-install
with:
python-version: ${{ matrix.python-version }}
cache: pip
cache-dependency-path: |
requirements.txt
dev-requirements.txt
- name: Install tox
run: |
python -m pip install tox
- name: Run Tests
env:
# run against the current Python interpreter
TOXENV: python
run: tox
- uses: codecov/codecov-action@v3
if: always()
with:
token: ${{ secrets.CODECOV_TOKEN }}
file: ./coverage.xml
flags: Python_${{ steps.python-install.outputs.python-version }}