Skip to content

Bump aiohttp from 3.8.5 to 3.9.0 #313

Bump aiohttp from 3.8.5 to 3.9.0

Bump aiohttp from 3.8.5 to 3.9.0 #313

Workflow file for this run

name: build
on: [push, pull_request]
jobs:
build:
name: Build for (${{ matrix.python-version }}) on ubuntu-latest
runs-on: 'ubuntu-latest'
strategy:
fail-fast: false
matrix:
python-version: ['3.8', '3.9']
services:
mongodb:
image: mongo
ports:
- 27017:27017
steps:
- name: Cancel Previous Runs
uses: styfle/[email protected]
with:
access_token: ${{ github.token }}
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip setuptools wheel
- name: Install library
run: |
pip install -e .[test,docs]
- name: Test
run: |
pytest
- name: coverage
uses: codecov/codecov-action@v3
with:
file: ./coverage.xml
name: codecov-umbrella