Skip to content

chore(deps): bump aiohttp from 3.10.10 to 3.10.11 #205

chore(deps): bump aiohttp from 3.10.10 to 3.10.11

chore(deps): bump aiohttp from 3.10.10 to 3.10.11 #205

Workflow file for this run

name: Test
on:
push:
branches:
- master
pull_request:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ "3.10", "3.12" ]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
name: Set up Python
with:
python-version: ${{ matrix.python-version }}
- name: Install Poetry
run: python -m pip install poetry
- name: Install Python dependencies
run: python -m poetry install
- name: Test
run: python -m poetry run pytest -svv --cov=bento_service_registry --cov-branch
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}