From f4a65fc28e223c907ac78b3b31011d2532f93407 Mon Sep 17 00:00:00 2001 From: Sebastiaan Zeeff Date: Sun, 15 Nov 2020 00:24:51 +0100 Subject: Migrate to GH Actions & GH Container Registry I've migrated site to GitHub Actions and GitHub Container Registry. This also means that coverage results will be pushed to coveralls.io. This commit also removes the pretty useless codeql analysis action. --- .flake8 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to '.flake8') diff --git a/.flake8 b/.flake8 index bcd26d9e..a8d6036f 100644 --- a/.flake8 +++ b/.flake8 @@ -3,7 +3,7 @@ max-line-length=100 docstring-convention=all import-order-style=pycharm application_import_names=pydis_site -exclude=__pycache__, venv, .venv, **/migrations/** +exclude=__pycache__, venv, .venv, **/migrations/**, .cache/** ignore= B311,W503,E226,S311,T000 # Missing Docstrings -- cgit v1.2.3 From 5b682c434bdbf2c23f30f7f8e79d1d9ee468f354 Mon Sep 17 00:00:00 2001 From: Joe Banks Date: Sun, 15 Nov 2020 00:23:26 +0000 Subject: Remove redundant wildcard --- .flake8 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to '.flake8') diff --git a/.flake8 b/.flake8 index a8d6036f..6690af3e 100644 --- a/.flake8 +++ b/.flake8 @@ -3,7 +3,7 @@ max-line-length=100 docstring-convention=all import-order-style=pycharm application_import_names=pydis_site -exclude=__pycache__, venv, .venv, **/migrations/**, .cache/** +exclude=__pycache__, venv, .venv, **/migrations/**, .cache/ ignore= B311,W503,E226,S311,T000 # Missing Docstrings -- cgit v1.2.3