-
Notifications
You must be signed in to change notification settings - Fork 0
40 lines (40 loc) · 1.13 KB
/
ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
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:
DEFAULT_WORKSPACE: bookmarkmgr
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# https://github.com/python/mypy/issues/16070
VALIDATE_PYTHON_MYPY: true