Skip to content

chore(deps): bump aiohttp from 3.8.5 to 3.8.6 in /src #82

chore(deps): bump aiohttp from 3.8.5 to 3.8.6 in /src

chore(deps): bump aiohttp from 3.8.5 to 3.8.6 in /src #82

Workflow file for this run

name: Tests
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.11"]
steps:
- uses: actions/checkout@v3
- 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
cd src
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
if [ -f requirements-dev.txt ]; then pip install -r requirements-dev.txt; fi
- name: Lint with pylint
run: |
pylint --recursive=y .
- name: Test with mypy
run: |
mypy .