Skip to content

Merge pull request #9 from taskiq-python/feature/lifespans #33

Merge pull request #9 from taskiq-python/feature/lifespans

Merge pull request #9 from taskiq-python/feature/lifespans #33

Workflow file for this run

name: Testing package
on:
- push
- pull_request
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 }}