From 2c0e330acf1955ca673da3b0be760f86b7b2fa7b Mon Sep 17 00:00:00 2001 From: Christian Clauss Date: Thu, 7 Oct 2021 20:01:44 +0200 Subject: [PATCH] sudo apt-get install portaudio19-dev --- .github/workflows/lint_python.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/lint_python.yml b/.github/workflows/lint_python.yml index d850a6f..3948cff 100644 --- a/.github/workflows/lint_python.yml +++ b/.github/workflows/lint_python.yml @@ -14,7 +14,8 @@ jobs: - run: codespell --ignore-words-list=ans - run: flake8 . --count --max-complexity=19 --max-line-length=88 --show-source --statistics - run: isort --check-only --profile black . - - run: pip install -r requirements.txt || pip install --editable . || true + - run: sudo apt-get install portaudio19-dev + - run: pip install -r requirements.txt - run: mkdir --parents --verbose .mypy_cache - run: mypy --ignore-missing-imports --install-types --non-interactive . - run: pytest . || true