Skip to content

Bump aiohttp[speedups] from 3.11.6 to 3.11.7 (#178) #317

Bump aiohttp[speedups] from 3.11.6 to 3.11.7 (#178)

Bump aiohttp[speedups] from 3.11.6 to 3.11.7 (#178) #317

Workflow file for this run

name: Pyright
on:
push:
paths:
- '.github/workflows/pyright.yml'
- 'requirements.txt'
- '**.py'
pull_request:
paths:
- '.github/workflows/pyright.yml'
- 'requirements.txt'
- '**.py'
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.13
uses: actions/setup-python@v5
with:
python-version: '3.13'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pyright
pip install -r requirements.txt
- name: Analysing the code with pyright
run: |
pyright --pythonversion 3.11