Lint on GitHub Actions (#196)

- Lint with pre-commit on GitHub Actions,
- Add some handy pre-hooks,
- Configure Ruff lint rules (https://github.com/astral-sh/ruff).

---------

Co-authored-by: Marc Wrobel <marc.wrobel@gmail.com>
This commit is contained in:
Hugo van Kemenade
2023-11-26 22:08:12 +02:00
committed by GitHub
parent 0d17306872
commit 8870ab5e28
8 changed files with 64 additions and 5 deletions

View File

@@ -16,7 +16,7 @@ USER_AGENT = 'Mozilla/5.0 (X11; Linux x86_64; rv:102.0) Gecko/20100101 Firefox/1
def load_product(product_name, pathname="website/products") -> frontmatter.Post:
"""Load the product's file frontmatter.
"""
with open(f"{pathname}/{product_name}.md", "r") as f:
with open(f"{pathname}/{product_name}.md") as f:
return frontmatter.load(f)
@@ -30,7 +30,7 @@ def list_products(method, products_filter=None, pathname="website/products") ->
if products_filter and product_name != products_filter:
continue
with open(product_file, "r") as f:
with open(product_file) as f:
data = frontmatter.load(f)
if "auto" in data:
configs = list(filter(

View File

@@ -36,7 +36,7 @@ query($endCursor: String) {
}
}
}' --jq '.data.repository.releases.edges.[].node | select(.isPrerelease == false) | [.name, .publishedAt] | join(",")'
""" % (repo, owner)
""" % (repo, owner) # noqa: UP031
child = subprocess.Popen(query, shell=True, stdout=subprocess.PIPE)
return child.communicate()[0].decode('utf-8')

View File

@@ -1,4 +1,3 @@
import re
from bs4 import BeautifulSoup
from common import dates
from common import endoflife