Skip to content

Bump aiohttp from 3.8.5 to 3.8.6 #267

Bump aiohttp from 3.8.5 to 3.8.6

Bump aiohttp from 3.8.5 to 3.8.6 #267

Workflow file for this run

---
name: Pull Request
on:
push:
branches:
- master
pull_request:
env:
PYTHON_VERSION: '3.9'
jobs:
linting:
name: Lint files
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: ${{ env.PYTHON_VERSION }}
- name: Setup pre-commit cache
uses: actions/cache@v3
with:
path: |
~/.cache/pre-commit
key: ${{ runner.os }}-${{ env.PYTHON_VERSION }}-pre-commit-${{ hashFiles('**/.pre-commit-config.yaml*') }}
restore-keys: |
${{ runner.os }}-${{ env.PYTHON_VERSION }}-pre-commit-
- name: Create environment
run: |
pip install pre-commit
pre-commit run --all-files