diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index cf8ae297..89ca9ba8 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -26,3 +26,7 @@ jobs: - name: Deploy run: | python deploy.py build + - name: Publish + run: | + ls build + echo "TODO: publish build/zxlive and the related files" \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml index 72850244..b5cc7557 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -66,6 +66,11 @@ zxlive = "zxlive.app:main" [tool.pyright] reportWildcardImportFromLibrary = "none" +[tool.flake8] +extend-ignore = [ + "E501", +] + [tool.mypy] python_version = "3.9" warn_return_any = true