Skip to content

chore(deps): bump aiohttp from 3.6.3 to 3.9.0 #161

chore(deps): bump aiohttp from 3.6.3 to 3.9.0

chore(deps): bump aiohttp from 3.6.3 to 3.9.0 #161

Workflow file for this run

name: python tests
on: push
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.9
uses: actions/setup-python@v2
with:
python-version: 3.9
- uses: actions/cache@v2
id: cache
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
restore-keys: |
${{ runner.os }}-pip-
- name: Install
if: steps.cache.outputs.cache-hit != 'true'
run: |
python -m pip install --upgrade pip
printf 'n\ny\ny\nadmin\nadmin\n' | bash ./install.sh
- name: Check files using the black formatter
uses: rickstaa/action-black@v1
id: action_black
with:
black_args: ". -t py39"
- name: Annotate diff changes using reviewdog
if: steps.action_black.outputs.is_formatted == 'true'
uses: reviewdog/action-suggester@v1
with:
tool_name: blackfmt
- name: Bandit Security Linter
uses: jpetrucciani/bandit-check@master