Skip to content

Merge pull request #6 from taskiq-python/feature/app-runner-fix #37

Merge pull request #6 from taskiq-python/feature/app-runner-fix

Merge pull request #6 from taskiq-python/feature/app-runner-fix #37

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 }}