Bump aiohttp from 3.7.4 to 3.8.5 #179
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Style formatting | |
on: [push, pull_request] | |
jobs: | |
mypy: | |
name: Style check with Black | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- uses: actions/setup-python@v1 | |
with: | |
python-version: "3.8" | |
- run: "python -m pip install black==19.10b0" | |
name: Install dependencies | |
- run: "make stylediff" | |
name: Run black |