Skip to content

CI: Lint bookmarkmgr using mypy #49

CI: Lint bookmarkmgr using mypy

CI: Lint bookmarkmgr using mypy #49

Workflow file for this run

name: CI
on: push
permissions: { }
jobs:
lint-all:
name: Lint - All
runs-on: ubuntu-latest
permissions:
contents: read
statuses: write
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: super-linter/super-linter/slim@v6.5.1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
VALIDATE_PYTHON_BLACK: false
VALIDATE_PYTHON_FLAKE8: false
VALIDATE_PYTHON_ISORT: false
# TODO: Enable mypy when per-directory configuration is supported.
# https://github.com/python/mypy/issues/16070
VALIDATE_PYTHON_MYPY: false
VALIDATE_PYTHON_PYLINT: false
lint-bookmarkmgr:
name: Lint - bookmarkmgr
runs-on: ubuntu-latest
permissions:
contents: read
statuses: write
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: super-linter/super-linter/slim@v6.5.1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GITHUB_WORKSPACE: bookmarkmgr
# https://github.com/python/mypy/issues/16070
VALIDATE_PYTHON_MYPY: true