Skip to content

chore(deps): bump aiolimiter from 1.1.0 to 1.2.1 #40

chore(deps): bump aiolimiter from 1.1.0 to 1.2.1

chore(deps): bump aiolimiter from 1.1.0 to 1.2.1 #40

Workflow file for this run

name: "MyPy"
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
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
if [ -f requirements-dev.txt ]; then pip install -r requirements-dev.txt mypy; fi
- name: Test with mypy
run: |
mypy .