Bump aiohttp from 3.8.5 to 3.8.6 #267
Workflow file for this run
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: 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 |