Skip to content

Added web.AppRunner support. #36

Added web.AppRunner support.

Added web.AppRunner support. #36

Workflow file for this run

name: Test package
on: push
jobs:
lint:
strategy:
matrix:
cmd:
- black
- flake8
- isort
- mypy
- autoflake
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install poetry
run: pipx install poetry
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.9"
cache: "poetry"
- name: Install deps
run: poetry install
- name: Run lint check
run: poetry run pre-commit run -a ${{ matrix.cmd }}